ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/experimental/host/vb_net_test/nettest.frm
(Generate patch)

Comparing experimental/host/vb_net_test/nettest.frm (file contents):
Revision 1.6 by pjm2, Fri Feb 23 10:53:30 2001 UTC vs.
Revision 1.9 by pjm2, Fri Feb 23 11:30:25 2001 UTC

# Line 14 | Line 14 | Begin VB.Form Form1
14     ScaleWidth      =   5670
15     ShowInTaskbar   =   0   'False
16     StartUpPosition =   3  'Windows Default
17 +   Begin VB.Timer Timer1
18 +      Left            =   3840
19 +      Top             =   120
20 +   End
21     Begin VB.CommandButton Command3
22        Caption         =   "TCP to Filter"
23        Height          =   375
# Line 63 | Line 67 | Begin VB.Form Form1
67        _Version        =   393216
68        Protocol        =   1
69     End
70 +   Begin VB.Label Label2
71 +      Alignment       =   1  'Right Justify
72 +      Caption         =   "Next heartbeat:"
73 +      Height          =   255
74 +      Left            =   120
75 +      TabIndex        =   8
76 +      Top             =   480
77 +      Width           =   1455
78 +   End
79 +   Begin VB.Label Label1
80 +      Alignment       =   1  'Right Justify
81 +      Caption         =   "Next UDP packet:"
82 +      Height          =   255
83 +      Left            =   120
84 +      TabIndex        =   7
85 +      Top             =   120
86 +      Width           =   1455
87 +   End
88 +   Begin VB.Label Label4
89 +      Caption         =   "0"
90 +      Height          =   255
91 +      Left            =   1680
92 +      TabIndex        =   6
93 +      Top             =   480
94 +      Width           =   615
95 +   End
96 +   Begin VB.Label Label3
97 +      Caption         =   "0"
98 +      Height          =   255
99 +      Left            =   1680
100 +      TabIndex        =   5
101 +      Top             =   120
102 +      Width           =   615
103 +   End
104     Begin VB.Label Status
105        Caption         =   "Status:"
106        Height          =   255
# Line 89 | Line 127 | Dim filterUDPPort As Integer
127   Dim fileList As String
128   Dim lastModified As String
129  
130 + Dim UDPUpdateTime As Integer
131 + Dim TCPUpdateTime As Integer
132 +
133   Dim protocolVersion As String
134   Dim connected As Boolean
135   Dim responseNumber As Integer
# Line 150 | Line 191 | iniError:
191      
192   End Sub
193  
153 Private Sub Label1_Click()
154
155 End Sub
156
194   Private Sub TCPSock_Connect()
195      
196      responseNumber = 0
# Line 198 | Line 235 | Private Sub TCPSock_DataArrival(ByVal bytesTotal As Lo
235                  TCPSock.SendData "UDPUpdateTime" & vbCrLf
236              Case 4:
237                  If response = "ERROR" Then GoTo configError
238 +                UDPUpdateTime = response
239                  TCPSock.SendData "TCPUpdateTime" & vbCrLf
240              Case 5:
241                  If response = "ERROR" Then GoTo configError
242 +                TCPUpdateTime = response
243                  TCPSock.SendData "ENDCONFIG" & vbCrLf
244              Case 6:
245                  If Not response = "OK" Then GoTo configError
# Line 226 | Line 265 | Private Sub TCPSock_DataArrival(ByVal bytesTotal As Lo
265                  TCPSock.Close
266                  Text4.Text = Text4.Text & vbCrLf & "  <closed>"
267                  Status.Caption = "i-scream Winhost " & protocolVersion & " - got config okay"
268 +                Label3.Caption = UDPUpdateTime
269 +                Label4.Caption = TCPUpdateTime
270 +                Timer1.Interval = 1000
271          End Select
272      Else
273          ' Perform a heartbeat (1.1)
# Line 255 | Line 297 | Private Sub TCPSock_DataArrival(ByVal bytesTotal As Lo
297      Exit Sub
298      
299   configError:
300 <    Status.Caption = "i-scream Winhost " & protocolVersion & " - FAILED to get configuration"
300 >    Status.Caption = "i-scream Winhost " & protocolVersion & " - FAILED to get configuration " & Err.Description
301 >    Exit Sub
302   heartbeatError:
303 <    Status.Caption = "i-scream Winhost " & protocolVersion & " - Heatbeat FAILED"
303 >    Status.Caption = "i-scream Winhost " & protocolVersion & " - Heatbeat FAILED " & Err.Description
304 >    Exit Sub
305   End Sub
306  
307 + Private Sub TCPTimer_Timer()
308 +    
309 +    ' establish a TCP connection to a filter
310 +    TCPSock.Close
311 +    TCPSock.Connect filterHostname, filterTCPPort
312 +
313 + End Sub
314 +
315 + Private Sub UDPTimer_Timer()
316 +    
317 +    ' build the contents of the XML packet.
318 +    xml = "<packet></packet>"
319 +
320 +    ' Use the first winsock control to send a UDP packet.
321 +    UDPSock.RemoteHost = filterHostname
322 +    UDPSock.RemotePort = filterUDPPort
323 +    UDPSock.SendData xml
324 +    Status.Caption = "i-scream Winhost " & protocolVersion & " - UDP packet sent."
325 +
326 + End Sub
327 +
328 + Private Sub Timer1_Timer()
329 +
330 +    Label3.Caption = Label3.Caption - 1
331 +    Label4.Caption = Label4.Caption - 1
332 +    
333 +    Status.Caption = "i-scream Winhost " & protocolVersion
334 +    
335 +    If Label3.Caption < 1 Then
336 +        ' build the contents of the XML packet.
337 +        xml = "<packet></packet>"
338 +
339 +        ' Use the first winsock control to send a UDP packet.
340 +        UDPSock.RemoteHost = filterHostname
341 +        UDPSock.RemotePort = filterUDPPort
342 +        UDPSock.SendData xml
343 +        Status.Caption = "i-scream Winhost " & protocolVersion & " - UDP packet sent."
344 +        Label3.Caption = UDPUpdateTime
345 +    End If
346 +    
347 +    If Label4.Caption < 1 Then
348 +        ' establish a TCP connection to a filter
349 +        TCPSock.Close
350 +        TCPSock.Connect filterHostname, filterTCPPort
351 +        Label4.Caption = TCPUpdateTime
352 +    End If
353 +
354 + End Sub

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines