terom@15: #ifndef NETWORK_CONFIG_HH terom@15: #define NETWORK_CONFIG_HH terom@15: terom@21: // socket-related includes terom@21: // copied from clanlib code, so should be relatively OS-safe terom@15: #ifndef WIN32 terom@15: #include terom@15: #include terom@15: #include terom@15: #include terom@15: #include terom@15: #include terom@15: #else terom@15: #include terom@15: #include terom@15: typedef int socklen_t; terom@15: #endif terom@15: terom@21: #include terom@21: terom@21: const std::string NETWORK_APP_NAME = "KisnaGlista"; terom@22: terom@15: const std::string NETWORK_PORT_STR = "9338"; terom@22: terom@22: const std::string NETWORK_NETOBJ_CHAN = "_netobj"; terom@15: terom@15: #endif /* NETWORK_CONFIG_HH */