Hey, so i was doing some test...
i have my port 65535 that is set for my principal TCP co,
i want to have another port set up for my second TCP co,
i cant seems to be able to have it working.
my code looks kinda like that:
Code:
(server)
Connection connectionMC;
Socket socket;
SockAddr sockaddr;
sockaddr.fromText("192.168.0.11:60000");
socket.createTcp(sockaddr);
socket.bind(sockaddr);
socket.block(false);
socket.listen();
socket.connect(sockaddr);
connectionMC.tcpNoDelay(true);
connectionMC.serverAcceptClient(socket);
(client)
SockAddr addr; addr.fromText("192.168.0.11:6000");
clientConnectToServer(addr);
tcpNoDelay(true);
client seems to be find, but server doesnt wanna allow any other connection,
i had the same issue with the UDP, same idea behind it... am i missing something ?
thanks for your time =)
---
my second question was about Ambiant occlusion, is there any way to achieve this in EE?