VB IGMP (转)

VB IGMP (转)[@more@]

Option Explicit
'*******************IGMP************************
Private Type SockAddr 
  sin_family As Integer
  sin_port As Integer
  sin_addr As String * 4
  sin_zero As String * 8
End Type

Private Type T_WSA 
  wVersion As Integer
  wHighVersion As Integer
  szDescription(0 To 255) As Byte
  szSystemStatus(0 To 128) As Byte
  iMaxSockets As Integer
  iMaxUdpDg As Integer
  lpVendorInfo As Long
End Type

Private Declare Sub CopyMemory Lib "kernel32.dll" Alias "RtlMoveMemory" (Dest As Any, Src As Any, ByVal cb&)
Private Declare Function .NET_addr Lib "wsock32.dll" (ByVal addr As String) As Long
Private Declare Function WSAStartup Lib "wsock32.dll" (ByVal a As Long, b As T_WSA) As Long
Private Declare Function WSACleanUp Lib "wsock32.dll" Alias "WSACleanup" () As Integer
Private Declare Function Socket Lib "wsock32.dll" Alias "socket" (ByVal afinet As Integer, ByVal socktype As Integer, ByVal protocol As Integer) As Long
Private Declare Function ConnectWinsock Lib "wsock32.dll" Alias "connect" (ByVal sock As Long, sockstruct As SockAddr, ByVal structlen As Integer) As Integer
Private Declare Function send Lib "wsock32.dll" (ByVal sock As Long, ByVal msg As String, ByVal msglen As Long, ByVal flag As Integer) As Long
Private Declare Function htons Lib "wsock32.dll" (ByVal a As Integer) As Integer
Private Declare Function closesocket Lib "wsock32.dll" (ByVal sn As Long) As Integer
Private sock As Long
Private t As Long 
Private Sub cmd_Go_Click()
If t > 0 Then
  t = 0
  Else
  Dim addr As SockAddr
  Dim x As Long
  Dim ip As String
  Dim y(0 To 3) As Byte
  ip = ""
  x = inet_addr(txt_IP.Text) 
  CopyMemory y(0), x, 4 
  For x = 0 To 3
  ip = ip & Chr(y(x))
  Next x
  addr.sin_addr = ip
  addr.sin_family = 2
  addr.sin_port = htons(100) 
  addr.sin_zero = String(8, 0)
 
  If ConnectWinsock(sock, addr, Len(addr)) Then 
  MsgBox "connect error"
  Exit Sub
  End If
  t = 10
  Set cmd_Go.Picture = Image1.Picture 
  Timer1.Enabled = True
End If
End Sub
Private Sub Form_Load()
Dim WSAData As T_WSA
Set cmd_Go.Picture = Image2.Picture 
  WSAStartup 514, WSAData 
  sock = Socket(2, 3, 2) 
  If sock < 0 Then
  MsgBox "winsock error"
  Unload Me
  End If
t = 0
End Sub
Private Sub Form_Unload(Cancel As Integer)
closesocket sock
WSACleanUp 
End Sub

Private Sub Timer1_Timer() 
If t Then
  send sock, String(60000, "0"), 60000, 0
  t = t - 1
Else
  Timer1.Enabled = False
  Set cmd_Go.Picture = Image2.Picture
End If
End Sub

 


来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/10752043/viewspace-987521/,如需转载,请注明出处,否则将追究法律责任。

转载于:http://blog.itpub.net/10752043/viewspace-987521/

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值