LOGOUT

Logout message is used to close the connection from the server. This is the last message the client sends to the server.

Message syntax

LOGOUT<end>

where

<end> = Char(0)

Reply syntax

resultCode<end>
Parameter Type Description
resultCode integer
OK The client was succesfully connected to the server.
ERROR An unspecified error.
<end> = Char(0)

Example

The following string closes the connection.

-> LOGOUT<end>
<- 0<end>

See also

LOGIN