From 50e9f9ea7f7385a2c5931fca2b8fb1103078e67c Mon Sep 17 00:00:00 2001 From: Mikko Rasa Date: Wed, 10 Aug 2011 21:11:56 +0300 Subject: [PATCH] Prepare for assimilating msphttp --- Build | 4 ++-- source/{ => net}/clientsocket.cpp | 0 source/{ => net}/clientsocket.h | 0 source/{ => net}/communicator.cpp | 0 source/{ => net}/communicator.h | 0 source/{ => net}/constants.cpp | 0 source/{ => net}/constants.h | 0 source/{ => net}/datagramsocket.cpp | 0 source/{ => net}/datagramsocket.h | 0 source/{ => net}/inet.cpp | 0 source/{ => net}/inet.h | 0 source/{ => net}/inet6.cpp | 0 source/{ => net}/inet6.h | 0 source/{ => net}/protocol.cpp | 0 source/{ => net}/protocol.h | 0 source/{ => net}/receiver.h | 0 source/{ => net}/resolve.cpp | 0 source/{ => net}/resolve.h | 0 source/{ => net}/serversocket.cpp | 0 source/{ => net}/serversocket.h | 0 source/{ => net}/sockaddr.cpp | 0 source/{ => net}/sockaddr.h | 0 source/{ => net}/sockaddr_private.h | 0 source/{ => net}/socket.cpp | 0 source/{ => net}/socket.h | 0 source/{ => net}/socket_private.h | 0 source/{ => net}/streamserversocket.cpp | 0 source/{ => net}/streamserversocket.h | 0 source/{ => net}/streamsocket.cpp | 0 source/{ => net}/streamsocket.h | 0 30 files changed, 2 insertions(+), 2 deletions(-) rename source/{ => net}/clientsocket.cpp (100%) rename source/{ => net}/clientsocket.h (100%) rename source/{ => net}/communicator.cpp (100%) rename source/{ => net}/communicator.h (100%) rename source/{ => net}/constants.cpp (100%) rename source/{ => net}/constants.h (100%) rename source/{ => net}/datagramsocket.cpp (100%) rename source/{ => net}/datagramsocket.h (100%) rename source/{ => net}/inet.cpp (100%) rename source/{ => net}/inet.h (100%) rename source/{ => net}/inet6.cpp (100%) rename source/{ => net}/inet6.h (100%) rename source/{ => net}/protocol.cpp (100%) rename source/{ => net}/protocol.h (100%) rename source/{ => net}/receiver.h (100%) rename source/{ => net}/resolve.cpp (100%) rename source/{ => net}/resolve.h (100%) rename source/{ => net}/serversocket.cpp (100%) rename source/{ => net}/serversocket.h (100%) rename source/{ => net}/sockaddr.cpp (100%) rename source/{ => net}/sockaddr.h (100%) rename source/{ => net}/sockaddr_private.h (100%) rename source/{ => net}/socket.cpp (100%) rename source/{ => net}/socket.h (100%) rename source/{ => net}/socket_private.h (100%) rename source/{ => net}/streamserversocket.cpp (100%) rename source/{ => net}/streamserversocket.h (100%) rename source/{ => net}/streamsocket.cpp (100%) rename source/{ => net}/streamsocket.h (100%) diff --git a/Build b/Build index 899274b..444fc30 100644 --- a/Build +++ b/Build @@ -11,13 +11,13 @@ package "mspnet" headers "msp/net" { - source "source"; + source "source/net"; install true; }; library "mspnet" { - source "source"; + source "source/net"; install true; }; diff --git a/source/clientsocket.cpp b/source/net/clientsocket.cpp similarity index 100% rename from source/clientsocket.cpp rename to source/net/clientsocket.cpp diff --git a/source/clientsocket.h b/source/net/clientsocket.h similarity index 100% rename from source/clientsocket.h rename to source/net/clientsocket.h diff --git a/source/communicator.cpp b/source/net/communicator.cpp similarity index 100% rename from source/communicator.cpp rename to source/net/communicator.cpp diff --git a/source/communicator.h b/source/net/communicator.h similarity index 100% rename from source/communicator.h rename to source/net/communicator.h diff --git a/source/constants.cpp b/source/net/constants.cpp similarity index 100% rename from source/constants.cpp rename to source/net/constants.cpp diff --git a/source/constants.h b/source/net/constants.h similarity index 100% rename from source/constants.h rename to source/net/constants.h diff --git a/source/datagramsocket.cpp b/source/net/datagramsocket.cpp similarity index 100% rename from source/datagramsocket.cpp rename to source/net/datagramsocket.cpp diff --git a/source/datagramsocket.h b/source/net/datagramsocket.h similarity index 100% rename from source/datagramsocket.h rename to source/net/datagramsocket.h diff --git a/source/inet.cpp b/source/net/inet.cpp similarity index 100% rename from source/inet.cpp rename to source/net/inet.cpp diff --git a/source/inet.h b/source/net/inet.h similarity index 100% rename from source/inet.h rename to source/net/inet.h diff --git a/source/inet6.cpp b/source/net/inet6.cpp similarity index 100% rename from source/inet6.cpp rename to source/net/inet6.cpp diff --git a/source/inet6.h b/source/net/inet6.h similarity index 100% rename from source/inet6.h rename to source/net/inet6.h diff --git a/source/protocol.cpp b/source/net/protocol.cpp similarity index 100% rename from source/protocol.cpp rename to source/net/protocol.cpp diff --git a/source/protocol.h b/source/net/protocol.h similarity index 100% rename from source/protocol.h rename to source/net/protocol.h diff --git a/source/receiver.h b/source/net/receiver.h similarity index 100% rename from source/receiver.h rename to source/net/receiver.h diff --git a/source/resolve.cpp b/source/net/resolve.cpp similarity index 100% rename from source/resolve.cpp rename to source/net/resolve.cpp diff --git a/source/resolve.h b/source/net/resolve.h similarity index 100% rename from source/resolve.h rename to source/net/resolve.h diff --git a/source/serversocket.cpp b/source/net/serversocket.cpp similarity index 100% rename from source/serversocket.cpp rename to source/net/serversocket.cpp diff --git a/source/serversocket.h b/source/net/serversocket.h similarity index 100% rename from source/serversocket.h rename to source/net/serversocket.h diff --git a/source/sockaddr.cpp b/source/net/sockaddr.cpp similarity index 100% rename from source/sockaddr.cpp rename to source/net/sockaddr.cpp diff --git a/source/sockaddr.h b/source/net/sockaddr.h similarity index 100% rename from source/sockaddr.h rename to source/net/sockaddr.h diff --git a/source/sockaddr_private.h b/source/net/sockaddr_private.h similarity index 100% rename from source/sockaddr_private.h rename to source/net/sockaddr_private.h diff --git a/source/socket.cpp b/source/net/socket.cpp similarity index 100% rename from source/socket.cpp rename to source/net/socket.cpp diff --git a/source/socket.h b/source/net/socket.h similarity index 100% rename from source/socket.h rename to source/net/socket.h diff --git a/source/socket_private.h b/source/net/socket_private.h similarity index 100% rename from source/socket_private.h rename to source/net/socket_private.h diff --git a/source/streamserversocket.cpp b/source/net/streamserversocket.cpp similarity index 100% rename from source/streamserversocket.cpp rename to source/net/streamserversocket.cpp diff --git a/source/streamserversocket.h b/source/net/streamserversocket.h similarity index 100% rename from source/streamserversocket.h rename to source/net/streamserversocket.h diff --git a/source/streamsocket.cpp b/source/net/streamsocket.cpp similarity index 100% rename from source/streamsocket.cpp rename to source/net/streamsocket.cpp diff --git a/source/streamsocket.h b/source/net/streamsocket.h similarity index 100% rename from source/streamsocket.h rename to source/net/streamsocket.h -- 2.43.0