如何创建多个套接字作为索引

发布于 2024-11-06 08:39:04 字数 243 浏览 1 评论 0原文

我有一个使用winsock 的VB 应用程序。我想将其转换为 VB.Net,因此据我了解,我应该使用 System.net.sockets 来执行此操作。

但问题是在VB应用程序中,通过使用winsock的索引功能创建了多个套接字。示例

Load Socket(isocket)

其中 isocket 是一个整数变量,每次新连接请求时都会递增。

那么我该如何做同样的事情,即。在vb.net中打开多个套接字?

I have a VB application where winsock is used. I want to convert it to VB.Net, so as I understand I should use System.net.sockets to do this.

But the problem is in the VB application multiple sockets are created by using the index feature of the winsock . example

Load Socket(isocket)

where isocket is an integer variable that is incremented each time, for a new connection request.

So how do I do the same, ie. open multiple sockets in vb.net?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

温柔少女心 2024-11-13 08:39:04

在VB6 中,Winsock 是一个OCX,因此您通过调用Load Socket(Index) 所做的是创建ActiveX 控件的新实例。 VB.NET 中没有这样的等效项,因此您可以做的是创建 System.Net.Sockets.Socket 的集合:

Dim collSockets As New Collection(Of System.Net.Sockets.Socket)

当您收到新的连接请求时,在集合中创建一个新项目:

 Dim sck As New System.Net.Sockets.Socket(**Initialise Your New Socket Here**)
 collSockets.Add(sck)

然后您可以通过索引(从零开始)访问您的套接字:

collSockets(0).Whatever()

In VB6 the Winsock is an OCX so what you are doing by calling Load Socket(Index) is creating a new instance of the ActiveX Control. There is no such equivalent in VB.NET so what you could do is create a collection of System.Net.Sockets.Socket:

Dim collSockets As New Collection(Of System.Net.Sockets.Socket)

When you get a new connection request, create a new item in the collection:

 Dim sck As New System.Net.Sockets.Socket(**Initialise Your New Socket Here**)
 collSockets.Add(sck)

Then you can access your sockets by Index (zero based):

collSockets(0).Whatever()
零崎曲识 2024-11-13 08:39:04

然后我们可以做这样的事情:

dim x as integer = 0
x += 1
collSockets(x).Whatever()

这将在每个事件中创建新的套接字,并且 x 将加倍,就像

collSocket(1).Whatever()
x+= 1
collSocket(2).Whatever()

Etc一样。

Then we can do something like this:

dim x as integer = 0
x += 1
collSockets(x).Whatever()

That will make new socket in each event and the x will double will be like

collSocket(1).Whatever()
x+= 1
collSocket(2).Whatever()

Etc.

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