
UDPPort 2.0
-----------

' ---------------------------------------------------------------
' UDPPort Properties
'   Dispatch interface for UDPPort Control

' AboutBox
'  Shows the About Box. Available only at design time.
Declare Sub AboutBox ()

' WinsockInfo
'  Identifying information about the loaded Winsock stack.
Dim WinsockInfo As String

' WinsockStatus
'  The status of the Winsock stack.
Dim WinsockStatus As String

' WinsockPath
'  The path to the Winsock DLL used.
Dim WinsockPath As String

' WinsockLoaded
'  Loads and unloads Winsock on demand.
Dim WinsockLoaded As Boolean

' WinsockMaxSockets
'  Maximum number of sockets available to a single process.
Dim WinsockMaxSockets As Long

' WinsockMaxDatagramSize
'  Size in bytes of the largest UDP datagram that can be sent or received.
Dim WinsockMaxDatagramSize As Long

' LocalHost
'  The name of the local host machine. When connected, the IP address of the interface through which the connection was made.
Dim LocalHost As String

' RemoteHost
'  The address of the RemoteHost. Domain names are resolved to IP addresses.
Dim RemoteHost As String

' RemotePort
'  The TCP port in the remote host.
Dim RemotePort As Long

' LocalPort
'  The TCP port in the local host where UDPPort binds.
Dim LocalPort As Long

' Active
'  Enables or disables sending and receiving of data. Action property.
Dim Active As Boolean

' DataToSend
'  A string of data to be sent to the remote host. Write-only property.
Dim DataToSend As String

' InBufferSize
'  The size in bytes of the incoming queue of the socket.
Dim InBufferSize As Long

' OutBufferSize
'  The size in bytes of the outgoing queue of the socket.
Dim OutBufferSize As Long

' AcceptData
'  Enables or disables data reception (the DataIn event).
Dim AcceptData As Boolean

' DontRoute
'  If set to True, forces the socket to send data directly to interface (no routing).
Dim DontRoute As Boolean

' MaxPacketSize
'  The maximum length of the packets that can be received.
Dim MaxPacketSize As Long

' ---------------------------------------------------------------
' UDPPort Events
'   Event interface for UDPPort Control

' Error
'  Information about errors during data delivery.
Declare Sub Error (ByRef ErrorCode As Variant, ByRef Description As Variant)

' ReadyToSend
'  Fired when the control is ready to send data.
' Help: D:\DEVSOFT\IPWORKS\DEVSOFT\UDPPort.hlp (Help ID: 0X00000C84)
' 
Declare Sub ReadyToSend ()

' DataIn
'  Fired when data comes in.
' Help: D:\DEVSOFT\IPWORKS\DEVSOFT\UDPPort.hlp (Help ID: 0X00000C85)
' 
Declare Sub DataIn (ByRef Datagram As Variant, ByRef SourceAddress As Variant, ByRef SourcePort As Variant)

---------------------------------------------------------------

devSoft Inc.                                    

For more information, please go to http://www.devlink.com/devsoft/
or send us email at devsoft@devlink.com .

Copyright (c) 1994, 1995, 1996 devSoft Inc. - All Rights Reserved.


