?
=?ISO-8859-1?Q?=22D=2E_Andr=E9_Dhondt=22?=
In VB.NET 2003, is there a way to create a System.Net.Sockets.UDPClient
to listen to any address AND any port?
I can get it to listen to any address, but only if I specify a port (for
example, port 12345):
'-----------
Dim udpClient as New Sockets.UdpClient(12345)
Dim ipEndPoint as New IPEndPoint(IPAddress.Any, 0)
Dim receiveBytes as Byte()
receiveBytes = udpClient.Receive(ipEndPoint)
'-----------
to listen to any address AND any port?
I can get it to listen to any address, but only if I specify a port (for
example, port 12345):
'-----------
Dim udpClient as New Sockets.UdpClient(12345)
Dim ipEndPoint as New IPEndPoint(IPAddress.Any, 0)
Dim receiveBytes as Byte()
receiveBytes = udpClient.Receive(ipEndPoint)
'-----------