mirror of
https://github.com/openssl/openssl.git
synced 2024-11-26 03:24:02 +08:00
49 lines
1.7 KiB
Plaintext
49 lines
1.7 KiB
Plaintext
/* Error codes for the BIO functions. */
|
|
|
|
/* Function codes. */
|
|
#define BIO_F_ACPT_STATE 100
|
|
#define BIO_F_BIO_ACCEPT 101
|
|
#define BIO_F_BIO_BER_GET_HEADER 102
|
|
#define BIO_F_BIO_CTRL 103
|
|
#define BIO_F_BIO_GETS 104
|
|
#define BIO_F_BIO_GET_ACCEPT_SOCKET 105
|
|
#define BIO_F_BIO_GET_HOST_IP 106
|
|
#define BIO_F_BIO_GET_PORT 107
|
|
#define BIO_F_BIO_NEW 108
|
|
#define BIO_F_BIO_NEW_FILE 109
|
|
#define BIO_F_BIO_PUTS 110
|
|
#define BIO_F_BIO_READ 111
|
|
#define BIO_F_BIO_SOCK_INIT 112
|
|
#define BIO_F_BIO_WRITE 113
|
|
#define BIO_F_BUFFER_CTRL 114
|
|
#define BIO_F_CONN_STATE 115
|
|
#define BIO_F_FILE_CTRL 116
|
|
#define BIO_F_MEM_WRITE 117
|
|
#define BIO_F_SSL_NEW 118
|
|
#define BIO_F_WSASTARTUP 119
|
|
|
|
/* Reason codes. */
|
|
#define BIO_R_ACCEPT_ERROR 100
|
|
#define BIO_R_BAD_FOPEN_MODE 101
|
|
#define BIO_R_BAD_HOSTNAME_LOOKUP 102
|
|
#define BIO_R_CONNECT_ERROR 103
|
|
#define BIO_R_ERROR_SETTING_NBIO 104
|
|
#define BIO_R_ERROR_SETTING_NBIO_ON_ACCEPTED_SOCKET 105
|
|
#define BIO_R_ERROR_SETTING_NBIO_ON_ACCEPT_SOCKET 106
|
|
#define BIO_R_GETHOSTBYNAME_ADDR_IS_NOT_AF_INET 107
|
|
#define BIO_R_INVALID_IP_ADDRESS 108
|
|
#define BIO_R_KEEPALIVE 109
|
|
#define BIO_R_NBIO_CONNECT_ERROR 110
|
|
#define BIO_R_NO_ACCEPT_PORT_SPECIFIED 111
|
|
#define BIO_R_NO_HOSTHNAME_SPECIFIED 112
|
|
#define BIO_R_NO_PORT_DEFINED 113
|
|
#define BIO_R_NO_PORT_SPECIFIED 114
|
|
#define BIO_R_NULL_PARAMETER 115
|
|
#define BIO_R_TAG_MISMATCH 116
|
|
#define BIO_R_UNABLE_TO_BIND_SOCKET 117
|
|
#define BIO_R_UNABLE_TO_CREATE_SOCKET 118
|
|
#define BIO_R_UNABLE_TO_LISTEN_SOCKET 119
|
|
#define BIO_R_UNINITALISED 120
|
|
#define BIO_R_UNSUPPORTED_METHOD 121
|
|
#define BIO_R_WSASTARTUP 122
|