如何确定VB6中建立的套接字的本地端口

发布于 2024-09-26 08:33:56 字数 78 浏览 4 评论 0原文

在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

标点 2024-10-03 08:33:56

只需查询 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文