Imports System
Imports System.Net
Imports System.Net.Sockets
Imports System.Text
Dim ip As String = txt_Dst_IP.Text '""
Dim port As Integer = CType(txt_Port.Text, Integer)
Dim s As New Socket(AddressFamily.InterNetwork, SocketType.Dgram, ProtocolType.Udp)
Dim udpIP As IPAddress = IPAddress.Parse(ip)
Dim udp_endpoint As New IPEndPoint(udpIP, port)
Dim groupEP As New IPEndPoint(IPAddress.Any, port)
Dim senderRemote As EndPoint = CType(groupEP, EndPoint)
Dim WistronId As String = ""
Try
s.SetSocketOpti

最低0.47元/天 解锁文章
2万+

被折叠的 条评论
为什么被折叠?



