diff options
author | ryker <> | 1998-10-05 20:13:16 +0000 |
---|---|---|
committer | ryker <> | 1998-10-05 20:13:16 +0000 |
commit | 9e43e2ac1373d5be5c6500c1bc3b1dd6ee9584b4 (patch) | |
tree | 51ff319f3510104698e541954d10ad98f9125f36 /src/lib/libcrypto/bio | |
parent | 9e77c62555877f9a64805c49d0dcd7dbfbb40f4e (diff) | |
download | openbsd-9e43e2ac1373d5be5c6500c1bc3b1dd6ee9584b4.tar.gz openbsd-9e43e2ac1373d5be5c6500c1bc3b1dd6ee9584b4.tar.bz2 openbsd-9e43e2ac1373d5be5c6500c1bc3b1dd6ee9584b4.zip |
Import of SSLeay-0.9.0b with RSA and IDEA stubbed + OpenBSD build
functionality for shared libs.
Note that routines such as sslv2_init and friends that use RSA will
not work due to lack of RSA in this library.
Needs documentation and help from ports for easy upgrade to full
functionality where legally possible.
Diffstat (limited to 'src/lib/libcrypto/bio')
-rw-r--r-- | src/lib/libcrypto/bio/bio.err | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/src/lib/libcrypto/bio/bio.err b/src/lib/libcrypto/bio/bio.err new file mode 100644 index 0000000000..6e2f2b63ca --- /dev/null +++ b/src/lib/libcrypto/bio/bio.err | |||
@@ -0,0 +1,46 @@ | |||
1 | /* Error codes for the BIO functions. */ | ||
2 | |||
3 | /* Function codes. */ | ||
4 | #define BIO_F_ACPT_STATE 100 | ||
5 | #define BIO_F_BIO_ACCEPT 101 | ||
6 | #define BIO_F_BIO_CTRL 102 | ||
7 | #define BIO_F_BIO_GETS 103 | ||
8 | #define BIO_F_BIO_GET_ACCEPT_SOCKET 104 | ||
9 | #define BIO_F_BIO_GET_HOST_IP 105 | ||
10 | #define BIO_F_BIO_GET_PORT 106 | ||
11 | #define BIO_F_BIO_NEW 107 | ||
12 | #define BIO_F_BIO_NEW_FILE 108 | ||
13 | #define BIO_F_BIO_PUTS 109 | ||
14 | #define BIO_F_BIO_READ 110 | ||
15 | #define BIO_F_BIO_SOCK_INIT 111 | ||
16 | #define BIO_F_BIO_WRITE 112 | ||
17 | #define BIO_F_BUFFER_CTRL 113 | ||
18 | #define BIO_F_CONN_STATE 114 | ||
19 | #define BIO_F_FILE_CTRL 115 | ||
20 | #define BIO_F_MEM_WRITE 116 | ||
21 | #define BIO_F_SSL_NEW 117 | ||
22 | #define BIO_F_WSASTARTUP 118 | ||
23 | |||
24 | /* Reason codes. */ | ||
25 | #define BIO_R_ACCEPT_ERROR 100 | ||
26 | #define BIO_R_BAD_FOPEN_MODE 101 | ||
27 | #define BIO_R_BAD_HOSTNAME_LOOKUP 102 | ||
28 | #define BIO_R_CONNECT_ERROR 103 | ||
29 | #define BIO_R_ERROR_SETTING_NBIO 104 | ||
30 | #define BIO_R_ERROR_SETTING_NBIO_ON_ACCEPTED_SOCKET 105 | ||
31 | #define BIO_R_ERROR_SETTING_NBIO_ON_ACCEPT_SOCKET 106 | ||
32 | #define BIO_R_GETHOSTBYNAME_ADDR_IS_NOT_AF_INET 107 | ||
33 | #define BIO_R_INVALID_IP_ADDRESS 108 | ||
34 | #define BIO_R_KEEPALIVE 109 | ||
35 | #define BIO_R_NBIO_CONNECT_ERROR 110 | ||
36 | #define BIO_R_NO_ACCEPT_PORT_SPECIFIED 111 | ||
37 | #define BIO_R_NO_HOSTHNAME_SPECIFIED 112 | ||
38 | #define BIO_R_NO_PORT_DEFINED 113 | ||
39 | #define BIO_R_NO_PORT_SPECIFIED 114 | ||
40 | #define BIO_R_NULL_PARAMETER 115 | ||
41 | #define BIO_R_UNABLE_TO_BIND_SOCKET 116 | ||
42 | #define BIO_R_UNABLE_TO_CREATE_SOCKET 117 | ||
43 | #define BIO_R_UNABLE_TO_LISTEN_SOCKET 118 | ||
44 | #define BIO_R_UNINITALISED 119 | ||
45 | #define BIO_R_UNSUPPORTED_METHOD 120 | ||
46 | #define BIO_R_WSASTARTUP 121 | ||