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.12 by pjm2, Fri Feb 23 12:01:14 2001 UTC vs.
Revision 1.17 by pjm2, Fri Feb 23 17:37:04 2001 UTC

# Line 2 | Line 2 | VERSION 5.00
2   Object = "{248DD890-BB45-11CF-9ABC-0080C7E7B78D}#1.0#0"; "MSWINSCK.OCX"
3   Object = "{33155A3D-0CE0-11D1-A6B4-444553540000}#1.0#0"; "SysTray.ocx"
4   Begin VB.Form Form1
5 <   BorderStyle     =   4  'Fixed ToolWindow
5 >   BorderStyle     =   3  'Fixed Dialog
6     Caption         =   "i-scream Winhost"
7     ClientHeight    =   5655
8     ClientLeft      =   45
9 <   ClientTop       =   285
9 >   ClientTop       =   330
10     ClientWidth     =   4710
11     LinkTopic       =   "Form1"
12     MaxButton       =   0   'False
13 +   MinButton       =   0   'False
14     ScaleHeight     =   5655
15     ScaleWidth      =   4710
16     ShowInTaskbar   =   0   'False
# Line 67 | Line 68 | Begin VB.Form Form1
68        _Version        =   393216
69        Protocol        =   1
70     End
71 +   Begin VB.Label Label5
72 +      Caption         =   "b e t a"
73 +      BeginProperty Font
74 +         Name            =   "MS Sans Serif"
75 +         Size            =   24
76 +         Charset         =   0
77 +         Weight          =   700
78 +         Underline       =   0   'False
79 +         Italic          =   0   'False
80 +         Strikethrough   =   0   'False
81 +      EndProperty
82 +      Height          =   615
83 +      Left            =   240
84 +      TabIndex        =   8
85 +      Top             =   120
86 +      Width           =   1815
87 +   End
88     Begin VB.Label Label2
89        Alignment       =   1  'Right Justify
90        Caption         =   "Next heartbeat:"
# Line 118 | Line 136 | Attribute VB_GlobalNameSpace = False
136   Attribute VB_Creatable = False
137   Attribute VB_PredeclaredId = True
138   Attribute VB_Exposed = False
139 + ' For the system tray bits
140   Private Declare Function GetPrivateProfileString Lib "kernel32" Alias "GetPrivateProfileStringA" (ByVal lpApplicationName As String, ByVal lpKeyName As String, ByVal lpDefault As String, ByVal lpReturnedString As String, ByVal nSize As Long, ByVal lpFileName As String) As Long
141   Private Declare Function GetPrivateProfileInt Lib "kernel32" Alias "GetPrivateProfileIntA" (ByVal lpApplicationName As String, ByVal lpKeyName As String, ByVal nDefault As Long, ByVal lpFileName As String) As Long
142  
143   Dim filterManagerHostname As String
144   Dim filterManagerTCPPort As Integer
145  
146 + Dim seqNo As Long
147 + Dim machineName As String
148 +
149   Dim filterHostname As String
150   Dim filterTCPPort As Integer
151   Dim filterUDPPort As Integer
# Line 135 | Line 157 | Dim TCPUpdateTime As Integer
157  
158   Dim protocolVersion As String
159   Dim connected As Boolean
138 Dim responseNumber As Integer
160  
161 + 'Dim CUpTime As New CUpTime
162  
163 < Private Sub Command1_Click()
163 > Dim responseNumber As Integer
164  
143    ' build the contents of the XML packet.
144    xml = "<packet></packet>"
145
146    ' Use the first winsock control to send a UDP packet.
147    UDPSock.RemoteHost = filterHostname
148    UDPSock.RemotePort = filterUDPPort
149    UDPSock.SendData xml
150    Status.Caption = "i-scream Winhost " & protocolVersion & " - UDP packet sent."
151
152 End Sub
153
154
155 Private Sub Command3_Click()
156    ' establish a TCP connection to a filter
157    TCPSock.Close
158    TCPSock.Connect filterHostname, filterTCPPort
159 End Sub
160
165   Private Sub Form_Load()
166 +    
167      protocolVersion = "1.1"
168 <      
168 >    
169      Status.Caption = "Loading"
170 <    Form1.Caption = "i-scream Winhost " & protocolVersion
170 >    'Form1.Caption = "i-scream Winhost " & protocolVersion & " for " & GetVersion()
171      
172      ''''TEMP
173      filterManagerHostname = "killigrew.ukc.ac.uk"
174      filterManagerTCPPort = 4567
175 <    Reconfigure_Click
171 <    Exit Sub
172 <    ''' ENDTEMP
175 >    ''''' END TEMP
176      
177 +    GoTo skip
178      On Error GoTo iniError
179      Dim buf As String * 256
180      Dim length As Long
# Line 178 | Line 182 | Private Sub Form_Load()
182      filterManagerHostname = Left$(buf, length)
183      length = GetPrivateProfileString("i-scream Winhost", "FilterManagerPort", "<no value>", buf, Len(buf), App.Path & "winhost.ini")
184      filterManagerTCPPort = Left$(buf, length)
185 <    
185 > skip:
186 >
187      Status.Caption = "Connecting to Filter Manager"
188 +    Reconfigure_Click
189      
190 +    Form1.Show
191 +    SystemTray.Action = 0
192 +    
193 +    
194      Exit Sub
195      
196   iniError:
# Line 193 | Line 203 | Private Sub Form_QueryUnload(Cancel As Integer, Unload
203      x = MsgBox("Are you sure you want to shut down the Winhost?  This will stop your computer sending information to the i-scream Central Monitoring System.", vbYesNo, "i-scream Winhost")
204      If x = 7 Then
205          Cancel = True
206 +    Else
207 +        SystemTray.Action = 2
208      End If
197    SystemTray.Action = 2
209  
210   End Sub
211  
212   Private Sub Hide_Click()
213      Form1.Visible = False
214      SystemTray.Icon = Val(Form1.Icon)
204    SystemTray.Action = 0
215   End Sub
216  
217   Private Sub Reconfigure_Click()
# Line 216 | Line 226 | End Sub
226   Private Sub SystemTray_MouseDblClk(ByVal Button As Integer)
227  
228      Form1.Visible = True
219    SystemTray.Action = 2
229      Form1.SetFocus
230      
231  
# Line 343 | Line 352 | Private Sub Timer1_Timer()
352      Status.Caption = ""
353      
354      If Label3.Caption < 1 Then
355 <        ' build the contents of the XML packet.
356 <        xml = "<packet></packet>"
355 >        
356 >        ' prepare the contents of the XML packet.
357 >        seqNo = seqNo + 1
358 >        machineName = TCPSock.LocalHostName
359 >        LocalIP = TCPSock.LocalIP
360 >        packetDate = Date2Num()
361 >        
362 >        
363 >        Dim verinfo As OSVERSIONINFO
364 >        verinfo.dwOSVersionInfoSize = Len(verinfo)
365 >        ret% = GetVersionEx(verinfo)
366 >        If ret% = 0 Then
367 >            MsgBox "Error getting Windows version Information"
368 >            End
369 >        End If
370 >          
371 >        osName = getVersion()
372 >        osVersionMajor = verinfo.dwMajorVersion
373 >        osVersionMinor = verinfo.dwMinorVersion
374 >        osBuild = verinfo.dwBuildNumber
375 >        
376 >        Dim sysinfo As SYSTEM_INFO
377 >        GetSystemInfo sysinfo
378 >        Select Case sysinfo.dwProcessorType
379 >            Case PROCESSOR_INTEL_386
380 >                processorType = "Intel 386"
381 >            Case PROCESSOR_INTEL_486
382 >                processorType = "Intel 486"
383 >            Case PROCESSOR_INTEL_PENTIUM
384 >                processorType = "Intel Pentium variant"
385 >            Case PROCESSOR_MIPS_R4000
386 >                processorType = "MIPS R4000"
387 >            Case PROCESSOR_ALPHA_21064
388 >                processorType = "DEC Alpha 21064"
389 >            Case Else
390 >                processorType = "(unknown)"
391 >        End Select
392 >        
393 >        Dim memsts As MEMORYSTATUS
394 >        Dim memory&
395 >        GlobalMemoryStatus memsts
396 >        memory& = memsts.dwTotalPhys
397 >        memTotal = memory& \ 1024
398 >        memory& = memsts.dwAvailPhys
399 >        memFree = memory& \ 1024
400 >        memory& = memsts.dwTotalVirtual
401 >        swapTotal = memory& \ 1024
402 >        memory& = memsts.dwAvailVirtual
403 >        swapFree = memory& \ 1024
404 >        
405 >        ' build the contents of the XML packet
406 >        xml = "<packet seq_no=""" & seqNo & """ machine_name=""" & machineName & """ date=""" & packetDate & """ type=""data"" ip=""" & LocalIP & """>" & _
407 >              "<os>" & _
408 >                "<name>" & osName & "</name>" & _
409 >                "<version>" & osVersionMajor & "</version>" & _
410 >                "<release>" & osBuild & "</release>" & _
411 >                "<platform>" & osName & "</platform>" & _
412 >                "<minor_version>" & osVersionMinor & "</minor_version>" & _
413 >                "<processor>" & processorType & "</processor>" & _
414 >              "</os>" & _
415 >              "<memory><total>" & memTotal & "</total><free>" & memFree & "</free></memory>" & _
416 >              "<swap><total>" & swapTotal & "</total><free>" & swapFree & "</free></swap>" & _
417 >              "</packet>"
418 >        Text4.Text = Text4.Text + xml
419  
420          ' Use the first winsock control to send a UDP packet.
421          UDPSock.RemoteHost = filterHostname
# Line 362 | Line 433 | Private Sub Timer1_Timer()
433      End If
434  
435   End Sub
436 +
437 + Function Date2Num() As Long
438 +    Dim x As Long
439 +    x = DateDiff("s", "1-1-1970", Now)
440 +    Date2Num = x
441 + End Function

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines