Hello
What Ozmodian means is that Ineisis by default uses 65535 port.
However if you use Esenthel Editor Network Interface option, then it will occupy that port first, making Ineisis Server use a different port.
Anyway:
After you start Ineisis Server, it will display the port used on the Server App screen.
You can put that in "Ineisis Client\Select Server" code file:
Code:
bool Connect(Thread &thread)
{
SockAddr sa;
if(ConnectToLocal && !EE_PUBLISH)sa.setLocal(65535);else // never connect to local server when in publish build
{
if(!ServerIP.is())Exit("'ServerIP' variable not set.");
sa.fromText(ServerIP+":65535");
}
if(Server.clientConnectToServer(sa))Server.tcpNoDelay(true);
return false;
}
See above has default 65535 used.
If you enter correct port and it still doesn't work, it must mean you have some antivirus/firewall that blocks the connection.
You may need to add an exception rule.