用winsock编的通信程序如何返回客户端的信息

2024-12-14 06:42:14
推荐回答(1个)
回答1:

在服务器端的winsockServer_ConnectionRequest(Index As Integer, ByVal requestID As Long)函数中有下列语句获得客户端的信息:
remoteIP_str = tcpServer(Index).RemoteHostIP '获得登录者的IP
remotePT_str = tcpServer(Index).RemotePort '获得登录者的端口

其中winsockServer是服务器端Winsock控件的名称。