Enum NetError (gb.net)
Enum NetError Is CannotAuthenticate, CannotBindInterface, CannotBindSocket, CannotCreateSocket, CannotListen, CannotRead, CannotWrite, ConnectionRefused, ConnectionTimeout, HostNotFound
|
Constant
|
Description
|
|
CannotAuthenticate
|
Const CannotAuthenticate As Integer = -16
|
|
CannotBindInterface
|
This error constant means that binding a ServerSocket to a specific interface failed.
|
|
CannotBindSocket
|
This constant reflects that a network socket was unable to use (bind) to a port.
|
|
CannotCreateSocket
|
This constant reflects that a network object was unable to create a new socket, the system did not allow the operation to be performed.
|
|
CannotListen
|
This constant reflects that a server socket was unable to start listening on a TCP port or a local path.
|
|
CannotRead
|
This constant reflects that there was an error when trying to read data from a socket or a serial port.
|
|
CannotWrite
|
This constant shows that there was an error when trying to write data to a socket or a serial port.
|
|
ConnectionRefused
|
This constant reflects that a remote server refused a connection from a client socket.
|
|
ConnectionTimeout
|
This constant means that there was a connection timeout.
|
|
HostNotFound
|
This constant reflects that an object from one of the Net classes failed to translate a host name to an IP address.
|