SilcClientConnectionStatus
NAME
typedef enum { ... } SilcClientConnectionStatus
DESCRIPTION
This type is returned to the `connect' client operation to indicate
the status of the created connection. It can indicated if it was
successful or whether an error occurred.
SOURCE
typedef enum {
SILC_CLIENT_CONN_SUCCESS, /* Successfully connected */
SILC_CLIENT_CONN_SUCCESS_RESUME, /* Successfully connected and
resumed old detached session */
SILC_CLIENT_CONN_ERROR, /* Error occurred during connecting */
} SilcClientConnectionStatus;
|