B
Bob
What is the best way to limit a socket connect to the local machine
Is this correct & best way to do this?
mySocket = s.Accept();
if(mySocket.LocalEndPoint != mySocket.RemoteEndPoint)
mySocket.Close();
Bob
Is this correct & best way to do this?
mySocket = s.Accept();
if(mySocket.LocalEndPoint != mySocket.RemoteEndPoint)
mySocket.Close();
Bob