diff -r 22e3bfb6720d -r 7710cce889b2 src/proto2/NetworkConfig.hh --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/proto2/NetworkConfig.hh Thu Nov 06 22:23:59 2008 +0000 @@ -0,0 +1,20 @@ +#ifndef NETWORK_CONFIG_HH +#define NETWORK_CONFIG_HH + +#ifndef WIN32 + #include + #include + #include + #include + #include + #include +#else + #include + #include + typedef int socklen_t; +#endif + +const std::string NETWORK_PORT_STR = "9338"; +const uint16_t NETWORK_PACKET_MAX = 1280; + +#endif /* NETWORK_CONFIG_HH */