C#.net Sockets,服务端怎么知道客户端的IP和端口?

2024-12-17 08:31:32
推荐回答(4个)
回答1:

socket有一个LocalEndPoint获取本地的ip和端口号
RemoteEndPoint来获取远程客户端的ip和端口号

回答2:

是客户端连接服务器

//客户端代码
Socket sock = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);
int port = 8000;
IPAddress myIP = IPAddress.Parse("服务器IP");
IPEndPoint myClient = new IPEndPoint(myIP, port);
sock.Connect(myClient);//连接服务器
//服务器代码
Socket ServerSocket = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);

string ip = "服务器IP";
IPAddress ipAddr = IPAddress.Parse(ip);
int port = 8000;
IPEndPoint ippoint = new IPEndPoint(ipAddr, port);
ServerSocket.Bind(ippoint);//绑定
ServerSocket.Listen(10);//监听

回答3:

晕,连接上了就可以获得客户端的公网IP和端口。

回答4:

用 IPEndPoint