如何确定VB6中建立的套接字的本地端口
在 VB6 应用程序中,我正在寻找一种方法来确定双工套接字的本地端口。
我有远程 IP 和端口,但我还需要知道打印出本地端口。
In a VB6 Application, I am looking for a way to determine the Local Port for the duplex socket.
I have the remote Ip and Port, but I need to know an print out the local port as well.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需查询 Winsock 控件的 LocalPort 属性即可。
LocalPort 属性既用于设置发送/侦听端口,也用于在建立连接后检索它。即使指定端口 0(在这种情况下控件将选择随机端口),在建立连接后,此属性也将包含该端口号。
Just query the Winsock control's LocalPort property.
The LocalPort property is used both to set the send/listen port and to retrieve it once the connection has been established. Even if you specify port 0, in which case the control will select a random port, after a connection is established, this property will contain that port number.