C
C# Learner
I'm writing a server which accepts connections with the following line:
TcpClient client = listener.AcceptTcpClient();
Next, I'd like to be to determine the client's IP address.
How can I do this? No relevant property/method in TcpClient exists.
TcpClient client = listener.AcceptTcpClient();
Next, I'd like to be to determine the client's IP address.
How can I do this? No relevant property/method in TcpClient exists.