1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
#include "Networking.h"
#include "../util/OptionsDB.h"
#include "../util/i18n.h"
namespace {
void AddOptions(OptionsDB& db) {
db.Add("network.discovery.port", UserStringNop("OPTIONS_DB_NETWORK_DISCOVERY_PORT"), 12345, RangedValidator<int>(1025, 65535));
db.Add("network.message.port", UserStringNop("OPTIONS_DB_NETWORK_MESSAGE_PORT"), 12346, RangedValidator<int>(1025, 65535));
}
bool temp_bool = RegisterOptions(&AddOptions);
}
namespace Networking {
const std::string DISCOVERY_QUESTION = "Yo, can I play Free-O here, dog?";
const std::string DISCOVERY_ANSWER = "Word!";
#ifdef FREEORION_OPENBSD
// Needs to set shorter linger time on OpenBSD to be able to start the session
const int SOCKET_LINGER_TIME = 1 << (sizeof(uint16_t) * 4 - 1);
#else
const int SOCKET_LINGER_TIME = 1 << (sizeof(uint16_t) * 8 - 1);
#endif
int DiscoveryPort()
{ return GetOptionsDB().Get<int>("network.discovery.port"); }
int MessagePort()
{ return GetOptionsDB().Get<int>("network.message.port"); }
}
|