From a4244da27efded4db93731827214555afc88cb28 Mon Sep 17 00:00:00 2001 From: Stephen Birarda Date: Tue, 23 Apr 2013 15:46:57 -0700 Subject: [PATCH] add randomization of eve's listening port on launch --- eve/src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eve/src/main.cpp b/eve/src/main.cpp index ed4ec36e98..d1a82b860d 100644 --- a/eve/src/main.cpp +++ b/eve/src/main.cpp @@ -91,7 +91,7 @@ int main(int argc, const char* argv[]) { srand(time(0)); // create an AgentList instance to handle communication with other agents - AgentList* agentList = AgentList::createInstance(AGENT_TYPE_AVATAR, 55441); + AgentList* agentList = AgentList::createInstance(AGENT_TYPE_AVATAR, randIntInRange(1500, 65000)); // start telling the domain server that we are alive agentList->startDomainServerCheckInThread();