Skip to content

Commit

Permalink
Moved all udp socket stuff to seperate folder.
Browse files Browse the repository at this point in the history
  • Loading branch information
GamePad64 committed Mar 29, 2013
1 parent f971741 commit fe8bac4
Show file tree
Hide file tree
Showing 12 changed files with 15 additions and 15 deletions.
6 changes: 3 additions & 3 deletions .cproject
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
</toolChain>
</folderInfo>
<sourceEntries>
<entry excluding="test" flags="VALUE_WORKSPACE_PATH" kind="sourcePath" name=""/>
<entry excluding="src/daemon/net/TransportSocketEndpoint.cpp|test" flags="VALUE_WORKSPACE_PATH" kind="sourcePath" name=""/>
</sourceEntries>
</configuration>
</storageModule>
Expand Down Expand Up @@ -135,7 +135,7 @@
</toolChain>
</folderInfo>
<sourceEntries>
<entry excluding="src/daemon/databases/LocalDistNetDB.cpp|src/daemon/databases/DistNetDB.h|src/daemon/databases/LocalDistNetDB.h|src/daemon/main.cpp|src/daemon/databases/DistNetDB.cpp|src/daemon/extensions|src/daemon/connections|src/common/databases|src/daemon/net/asio" flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name=""/>
<entry excluding="src/daemon/net/TransportSocketEndpoint.cpp|src/daemon/databases/LocalDistNetDB.cpp|src/daemon/databases/DistNetDB.h|src/daemon/databases/LocalDistNetDB.h|src/daemon/main.cpp|src/daemon/databases/DistNetDB.cpp|src/daemon/extensions|src/daemon/connections|src/common/databases|src/daemon/net/asio" flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name=""/>
</sourceEntries>
</configuration>
</storageModule>
Expand Down Expand Up @@ -207,7 +207,7 @@
</toolChain>
</folderInfo>
<sourceEntries>
<entry excluding="test" flags="VALUE_WORKSPACE_PATH" kind="sourcePath" name=""/>
<entry excluding="src/daemon/net/TransportSocketEndpoint.cpp|test" flags="VALUE_WORKSPACE_PATH" kind="sourcePath" name=""/>
</sourceEntries>
</configuration>
</storageModule>
Expand Down
2 changes: 1 addition & 1 deletion src/daemon/Daemon.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
*/

#include "Daemon.h"
#include "net/UDPTransportSocketEndpoint.h"
#include "net/udp/UDPTransportSocketEndpoint.h"
#include "net/lpd/UDPLPDv4.h"

namespace p2pnet {
Expand Down
2 changes: 1 addition & 1 deletion src/daemon/Daemon.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
#include "databases/MapNetDBStorage.h"
#include "databases/PersonalKeyStorage.h"
#include "messaging/TransportSocketMessageDispatcher.h"
#include "net/UDPTransportSocket.h"
#include "net/udp/UDPTransportSocket.h"
#include "net/lpd/UDPLPDv4.h"
#include "net/lpd/UDPLPDv6.h"

Expand Down
2 changes: 1 addition & 1 deletion src/daemon/net/lpd/UDPLPD.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

#include "UDPLPD.h"
#include "../../AsioIOService.h"
#include "../UDPTransportSocket.h"
#include "../udp/UDPTransportSocket.h"
#include "../../protobuf/Protocol.pb.h"
#include "../../databases/PersonalKeyStorage.h"

Expand Down
2 changes: 1 addition & 1 deletion src/daemon/net/lpd/UDPLPD.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
#include "../../databases/NetDBStorage.h"
#include "../../protobuf/LPDMessage.pb.h"
#include "../../protobuf/Protocol.pb.h"
#include "../UDPTransportSocket.h"
#include "../udp/UDPTransportSocket.h"
#include <boost/asio.hpp>
#include <string>
#include <memory>
Expand Down
2 changes: 1 addition & 1 deletion src/daemon/net/lpd/UDPLPDv4.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
*/

#include "UDPLPDv4.h"
#include "../UDPTransportSocketEndpoint.h"
#include "../udp/UDPTransportSocketEndpoint.h"

namespace p2pnet {
namespace net {
Expand Down
2 changes: 1 addition & 1 deletion src/daemon/net/lpd/UDPLPDv6.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
*/

#include "UDPLPDv6.h"
#include "../UDPTransportSocketEndpoint.h"
#include "../udp/UDPTransportSocketEndpoint.h"

namespace p2pnet {
namespace net {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

#include "TransportSocketListener.h"
#include "../TransportSocketListener.h"
#include "UDPTransportSocket.h"
#include "../AsioIOService.h"
#include "../../AsioIOService.h"
#include <boost/bind.hpp>
#include <string>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
#ifndef UDPTRANSPORTSOCKET_H_
#define UDPTRANSPORTSOCKET_H_

#include "TransportSocket.h"
#include "../TransportSocket.h"
#include "UDPTransportSocketEndpoint.h"
#include <boost/asio.hpp>
#include <memory>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
*/

#include "UDPTransportSocketEndpoint.h"
#include "../protobuf/TransportSocketEndpoint_s.pb.h"
#include "../../protobuf/TransportSocketEndpoint_s.pb.h"
#include <sstream>

namespace p2pnet {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
#ifndef UDPTRANSPORTSOCKETENDPOINT_H_
#define UDPTRANSPORTSOCKETENDPOINT_H_

#include "TransportSocketEndpoint.h"
#include "../TransportSocketEndpoint.h"
#include <memory>
#include <boost/asio.hpp>

Expand Down
2 changes: 1 addition & 1 deletion src/daemon/peer/PeerRouteSet.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

#include "../../common/crypto/CryptoTypes.h"
#include "../relay/RelayTransportSocketEndpoint.h"
#include "../net/UDPTransportSocketEndpoint.h"
#include "../net/udp/UDPTransportSocketEndpoint.h"
#include <list>

namespace p2pnet {
Expand Down

0 comments on commit fe8bac4

Please sign in to comment.