242 |
|
SystemTray.Icon = Val(Form1.Icon) |
243 |
|
End Sub |
244 |
|
|
245 |
+ |
Private Sub Image1_Click() |
246 |
+ |
|
247 |
+ |
End Sub |
248 |
+ |
|
249 |
|
Private Sub Reconfigure_Click() |
250 |
|
' establish a TCP connection to a filtermanager |
251 |
|
connected = False |
287 |
|
' Remove linefeeds and returns from the line. |
288 |
|
response = Replace(response, Chr(13), "") |
289 |
|
response = Replace(response, Chr(10), "") |
286 |
– |
'Text4.Text = Text4.Text & vbCrLf & response |
290 |
|
|
291 |
|
If connected = False Then |
292 |
|
' Perform TCP configuration (1.1) |
302 |
|
lastModified = response |
303 |
|
Text1.Text = Text1.Text & response & vbCrLf |
304 |
|
TCPSock.SendData "FILELIST" & vbCrLf |
305 |
< |
''' Uncomment this for new protocol release. |
303 |
< |
'Case 2a: |
304 |
< |
'If response = "ERROR" Then GoTo configError |
305 |
< |
'fileList = response |
306 |
< |
'Text1.Text = Text1.Text & response & vbCrLf |
307 |
< |
'TCPSock.SendData "FQDN" & vbCrLf |
305 |
> |
' New addition to the protocol. |
306 |
|
Case 3: |
307 |
|
If response = "ERROR" Then GoTo configError |
308 |
|
fileList = response |
309 |
|
Text1.Text = Text1.Text & response & vbCrLf |
310 |
< |
' REMOVE above line, uncomment next |
313 |
< |
'machineName = response |
314 |
< |
TCPSock.SendData "UDPUpdateTime" & vbCrLf |
310 |
> |
TCPSock.SendData "FQDN" & vbCrLf |
311 |
|
Case 4: |
312 |
|
If response = "ERROR" Then GoTo configError |
313 |
+ |
Text1.Text = Text1.Text & response & vbCrLf |
314 |
+ |
machineName = response |
315 |
+ |
TCPSock.SendData "UDPUpdateTime" & vbCrLf |
316 |
+ |
Case 5: |
317 |
+ |
If response = "ERROR" Then GoTo configError |
318 |
|
UDPUpdateTime = response |
319 |
|
Text1.Text = Text1.Text & response & vbCrLf |
320 |
|
TCPSock.SendData "TCPUpdateTime" & vbCrLf |
321 |
< |
Case 5: |
321 |
> |
Case 6: |
322 |
|
If response = "ERROR" Then GoTo configError |
323 |
|
TCPUpdateTime = response |
324 |
|
Text1.Text = Text1.Text & response & vbCrLf |
325 |
|
TCPSock.SendData "ENDCONFIG" & vbCrLf |
326 |
< |
Case 6: |
326 |
> |
Case 7: |
327 |
|
If Not response = "OK" Then GoTo configError |
328 |
|
Text1.Text = Text1.Text & response & vbCrLf |
329 |
|
TCPSock.SendData "FILTER" & vbCrLf |
330 |
< |
Case 7: |
330 |
> |
Case 8: |
331 |
|
Text1.Text = Text1.Text & response & vbCrLf |
332 |
|
'we got a filter list here. |
333 |
|
readTo = 0 |
342 |
|
' get TCP Port number |
343 |
|
filterTCPPort = response |
344 |
|
TCPSock.SendData "END" & vbCrLf |
345 |
< |
Case 8: |
345 |
> |
Case 9: |
346 |
|
If Not response = "OK" Then GoTo configError |
347 |
|
connected = True |
348 |
|
responseNumber = 0 |
408 |
|
seqNo = seqNo + 1 |
409 |
|
|
410 |
|
' Comment this line in the next protocol |
411 |
< |
machineName = TCPSock.LocalHostName |
411 |
> |
'machineName = TCPSock.LocalHostName |
412 |
|
|
413 |
|
LocalIP = TCPSock.LocalIP |
414 |
|
packetDate = Date2Num() |
448 |
|
Dim memory& |
449 |
|
GlobalMemoryStatus memsts |
450 |
|
memory& = memsts.dwTotalPhys |
451 |
< |
memTotal = memory& \ 1024 |
451 |
> |
memTotal = memory& \ 1048576 |
452 |
|
memory& = memsts.dwAvailPhys |
453 |
< |
memFree = memory& \ 1024 |
453 |
> |
memFree = memory& \ 1048576 |
454 |
|
memory& = memsts.dwTotalVirtual |
455 |
< |
swapTotal = memory& \ 1024 |
455 |
> |
swapTotal = memory& \ 1048576 |
456 |
|
memory& = memsts.dwAvailVirtual |
457 |
< |
swapFree = memory& \ 1024 |
457 |
> |
swapFree = memory& \ 1048576 |
458 |
|
|
459 |
|
uptime = CUpTime.MilliSecs \ 1000 |
460 |
|
|