bio.h 32 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847
  1. /* crypto/bio/bio.h */
  2. /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
  3. * All rights reserved.
  4. *
  5. * This package is an SSL implementation written
  6. * by Eric Young (eay@cryptsoft.com).
  7. * The implementation was written so as to conform with Netscapes SSL.
  8. *
  9. * This library is free for commercial and non-commercial use as long as
  10. * the following conditions are aheared to. The following conditions
  11. * apply to all code found in this distribution, be it the RC4, RSA,
  12. * lhash, DES, etc., code; not just the SSL code. The SSL documentation
  13. * included with this distribution is covered by the same copyright terms
  14. * except that the holder is Tim Hudson (tjh@cryptsoft.com).
  15. *
  16. * Copyright remains Eric Young's, and as such any Copyright notices in
  17. * the code are not to be removed.
  18. * If this package is used in a product, Eric Young should be given attribution
  19. * as the author of the parts of the library used.
  20. * This can be in the form of a textual message at program startup or
  21. * in documentation (online or textual) provided with the package.
  22. *
  23. * Redistribution and use in source and binary forms, with or without
  24. * modification, are permitted provided that the following conditions
  25. * are met:
  26. * 1. Redistributions of source code must retain the copyright
  27. * notice, this list of conditions and the following disclaimer.
  28. * 2. Redistributions in binary form must reproduce the above copyright
  29. * notice, this list of conditions and the following disclaimer in the
  30. * documentation and/or other materials provided with the distribution.
  31. * 3. All advertising materials mentioning features or use of this software
  32. * must display the following acknowledgement:
  33. * "This product includes cryptographic software written by
  34. * Eric Young (eay@cryptsoft.com)"
  35. * The word 'cryptographic' can be left out if the rouines from the library
  36. * being used are not cryptographic related :-).
  37. * 4. If you include any Windows specific code (or a derivative thereof) from
  38. * the apps directory (application code) you must include an acknowledgement:
  39. * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
  40. *
  41. * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
  42. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  43. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  44. * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
  45. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  46. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  47. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  48. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  49. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  50. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  51. * SUCH DAMAGE.
  52. *
  53. * The licence and distribution terms for any publically available version or
  54. * derivative of this code cannot be changed. i.e. this code cannot simply be
  55. * copied and put under another distribution licence
  56. * [including the GNU Public Licence.]
  57. */
  58. #ifndef HEADER_BIO_H
  59. #define HEADER_BIO_H
  60. #include <openssl/e_os2.h>
  61. #ifndef OPENSSL_NO_FP_API
  62. # include <stdio.h>
  63. #endif
  64. #include <stdarg.h>
  65. #include <openssl/crypto.h>
  66. #ifndef OPENSSL_NO_SCTP
  67. # ifndef OPENSSL_SYS_VMS
  68. # include <stdint.h>
  69. # else
  70. # include <inttypes.h>
  71. # endif
  72. #endif
  73. #ifdef __cplusplus
  74. extern "C" {
  75. #endif
  76. /* These are the 'types' of BIOs */
  77. #define BIO_TYPE_NONE 0
  78. #define BIO_TYPE_MEM (1|0x0400)
  79. #define BIO_TYPE_FILE (2|0x0400)
  80. #define BIO_TYPE_FD (4|0x0400|0x0100)
  81. #define BIO_TYPE_SOCKET (5|0x0400|0x0100)
  82. #define BIO_TYPE_NULL (6|0x0400)
  83. #define BIO_TYPE_SSL (7|0x0200)
  84. #define BIO_TYPE_MD (8|0x0200) /* passive filter */
  85. #define BIO_TYPE_BUFFER (9|0x0200) /* filter */
  86. #define BIO_TYPE_CIPHER (10|0x0200) /* filter */
  87. #define BIO_TYPE_BASE64 (11|0x0200) /* filter */
  88. #define BIO_TYPE_CONNECT (12|0x0400|0x0100) /* socket - connect */
  89. #define BIO_TYPE_ACCEPT (13|0x0400|0x0100) /* socket for accept */
  90. #define BIO_TYPE_PROXY_CLIENT (14|0x0200) /* client proxy BIO */
  91. #define BIO_TYPE_PROXY_SERVER (15|0x0200) /* server proxy BIO */
  92. #define BIO_TYPE_NBIO_TEST (16|0x0200) /* server proxy BIO */
  93. #define BIO_TYPE_NULL_FILTER (17|0x0200)
  94. #define BIO_TYPE_BER (18|0x0200) /* BER -> bin filter */
  95. #define BIO_TYPE_BIO (19|0x0400) /* (half a) BIO pair */
  96. #define BIO_TYPE_LINEBUFFER (20|0x0200) /* filter */
  97. #define BIO_TYPE_DGRAM (21|0x0400|0x0100)
  98. #ifndef OPENSSL_NO_SCTP
  99. #define BIO_TYPE_DGRAM_SCTP (24|0x0400|0x0100)
  100. #endif
  101. #define BIO_TYPE_ASN1 (22|0x0200) /* filter */
  102. #define BIO_TYPE_COMP (23|0x0200) /* filter */
  103. #define BIO_TYPE_DESCRIPTOR 0x0100 /* socket, fd, connect or accept */
  104. #define BIO_TYPE_FILTER 0x0200
  105. #define BIO_TYPE_SOURCE_SINK 0x0400
  106. /* BIO_FILENAME_READ|BIO_CLOSE to open or close on free.
  107. * BIO_set_fp(in,stdin,BIO_NOCLOSE); */
  108. #define BIO_NOCLOSE 0x00
  109. #define BIO_CLOSE 0x01
  110. /* These are used in the following macros and are passed to
  111. * BIO_ctrl() */
  112. #define BIO_CTRL_RESET 1 /* opt - rewind/zero etc */
  113. #define BIO_CTRL_EOF 2 /* opt - are we at the eof */
  114. #define BIO_CTRL_INFO 3 /* opt - extra tit-bits */
  115. #define BIO_CTRL_SET 4 /* man - set the 'IO' type */
  116. #define BIO_CTRL_GET 5 /* man - get the 'IO' type */
  117. #define BIO_CTRL_PUSH 6 /* opt - internal, used to signify change */
  118. #define BIO_CTRL_POP 7 /* opt - internal, used to signify change */
  119. #define BIO_CTRL_GET_CLOSE 8 /* man - set the 'close' on free */
  120. #define BIO_CTRL_SET_CLOSE 9 /* man - set the 'close' on free */
  121. #define BIO_CTRL_PENDING 10 /* opt - is their more data buffered */
  122. #define BIO_CTRL_FLUSH 11 /* opt - 'flush' buffered output */
  123. #define BIO_CTRL_DUP 12 /* man - extra stuff for 'duped' BIO */
  124. #define BIO_CTRL_WPENDING 13 /* opt - number of bytes still to write */
  125. /* callback is int cb(BIO *bio,state,ret); */
  126. #define BIO_CTRL_SET_CALLBACK 14 /* opt - set callback function */
  127. #define BIO_CTRL_GET_CALLBACK 15 /* opt - set callback function */
  128. #define BIO_CTRL_SET_FILENAME 30 /* BIO_s_file special */
  129. /* dgram BIO stuff */
  130. #define BIO_CTRL_DGRAM_CONNECT 31 /* BIO dgram special */
  131. #define BIO_CTRL_DGRAM_SET_CONNECTED 32 /* allow for an externally
  132. * connected socket to be
  133. * passed in */
  134. #define BIO_CTRL_DGRAM_SET_RECV_TIMEOUT 33 /* setsockopt, essentially */
  135. #define BIO_CTRL_DGRAM_GET_RECV_TIMEOUT 34 /* getsockopt, essentially */
  136. #define BIO_CTRL_DGRAM_SET_SEND_TIMEOUT 35 /* setsockopt, essentially */
  137. #define BIO_CTRL_DGRAM_GET_SEND_TIMEOUT 36 /* getsockopt, essentially */
  138. #define BIO_CTRL_DGRAM_GET_RECV_TIMER_EXP 37 /* flag whether the last */
  139. #define BIO_CTRL_DGRAM_GET_SEND_TIMER_EXP 38 /* I/O operation tiemd out */
  140. /* #ifdef IP_MTU_DISCOVER */
  141. #define BIO_CTRL_DGRAM_MTU_DISCOVER 39 /* set DF bit on egress packets */
  142. /* #endif */
  143. #define BIO_CTRL_DGRAM_QUERY_MTU 40 /* as kernel for current MTU */
  144. #define BIO_CTRL_DGRAM_GET_FALLBACK_MTU 47
  145. #define BIO_CTRL_DGRAM_GET_MTU 41 /* get cached value for MTU */
  146. #define BIO_CTRL_DGRAM_SET_MTU 42 /* set cached value for
  147. * MTU. want to use this
  148. * if asking the kernel
  149. * fails */
  150. #define BIO_CTRL_DGRAM_MTU_EXCEEDED 43 /* check whether the MTU
  151. * was exceed in the
  152. * previous write
  153. * operation */
  154. #define BIO_CTRL_DGRAM_GET_PEER 46
  155. #define BIO_CTRL_DGRAM_SET_PEER 44 /* Destination for the data */
  156. #define BIO_CTRL_DGRAM_SET_NEXT_TIMEOUT 45 /* Next DTLS handshake timeout to
  157. * adjust socket timeouts */
  158. #ifndef OPENSSL_NO_SCTP
  159. /* SCTP stuff */
  160. #define BIO_CTRL_DGRAM_SCTP_SET_IN_HANDSHAKE 50
  161. #define BIO_CTRL_DGRAM_SCTP_ADD_AUTH_KEY 51
  162. #define BIO_CTRL_DGRAM_SCTP_NEXT_AUTH_KEY 52
  163. #define BIO_CTRL_DGRAM_SCTP_AUTH_CCS_RCVD 53
  164. #define BIO_CTRL_DGRAM_SCTP_GET_SNDINFO 60
  165. #define BIO_CTRL_DGRAM_SCTP_SET_SNDINFO 61
  166. #define BIO_CTRL_DGRAM_SCTP_GET_RCVINFO 62
  167. #define BIO_CTRL_DGRAM_SCTP_SET_RCVINFO 63
  168. #define BIO_CTRL_DGRAM_SCTP_GET_PRINFO 64
  169. #define BIO_CTRL_DGRAM_SCTP_SET_PRINFO 65
  170. #define BIO_CTRL_DGRAM_SCTP_SAVE_SHUTDOWN 70
  171. #endif
  172. /* modifiers */
  173. #define BIO_FP_READ 0x02
  174. #define BIO_FP_WRITE 0x04
  175. #define BIO_FP_APPEND 0x08
  176. #define BIO_FP_TEXT 0x10
  177. #define BIO_FLAGS_READ 0x01
  178. #define BIO_FLAGS_WRITE 0x02
  179. #define BIO_FLAGS_IO_SPECIAL 0x04
  180. #define BIO_FLAGS_RWS (BIO_FLAGS_READ|BIO_FLAGS_WRITE|BIO_FLAGS_IO_SPECIAL)
  181. #define BIO_FLAGS_SHOULD_RETRY 0x08
  182. #ifndef BIO_FLAGS_UPLINK
  183. /* "UPLINK" flag denotes file descriptors provided by application.
  184. It defaults to 0, as most platforms don't require UPLINK interface. */
  185. #define BIO_FLAGS_UPLINK 0
  186. #endif
  187. /* Used in BIO_gethostbyname() */
  188. #define BIO_GHBN_CTRL_HITS 1
  189. #define BIO_GHBN_CTRL_MISSES 2
  190. #define BIO_GHBN_CTRL_CACHE_SIZE 3
  191. #define BIO_GHBN_CTRL_GET_ENTRY 4
  192. #define BIO_GHBN_CTRL_FLUSH 5
  193. /* Mostly used in the SSL BIO */
  194. /* Not used anymore
  195. * #define BIO_FLAGS_PROTOCOL_DELAYED_READ 0x10
  196. * #define BIO_FLAGS_PROTOCOL_DELAYED_WRITE 0x20
  197. * #define BIO_FLAGS_PROTOCOL_STARTUP 0x40
  198. */
  199. #define BIO_FLAGS_BASE64_NO_NL 0x100
  200. /* This is used with memory BIOs: it means we shouldn't free up or change the
  201. * data in any way.
  202. */
  203. #define BIO_FLAGS_MEM_RDONLY 0x200
  204. typedef struct bio_st BIO;
  205. void BIO_set_flags(BIO *b, int flags);
  206. int BIO_test_flags(const BIO *b, int flags);
  207. void BIO_clear_flags(BIO *b, int flags);
  208. #define BIO_get_flags(b) BIO_test_flags(b, ~(0x0))
  209. #define BIO_set_retry_special(b) \
  210. BIO_set_flags(b, (BIO_FLAGS_IO_SPECIAL|BIO_FLAGS_SHOULD_RETRY))
  211. #define BIO_set_retry_read(b) \
  212. BIO_set_flags(b, (BIO_FLAGS_READ|BIO_FLAGS_SHOULD_RETRY))
  213. #define BIO_set_retry_write(b) \
  214. BIO_set_flags(b, (BIO_FLAGS_WRITE|BIO_FLAGS_SHOULD_RETRY))
  215. /* These are normally used internally in BIOs */
  216. #define BIO_clear_retry_flags(b) \
  217. BIO_clear_flags(b, (BIO_FLAGS_RWS|BIO_FLAGS_SHOULD_RETRY))
  218. #define BIO_get_retry_flags(b) \
  219. BIO_test_flags(b, (BIO_FLAGS_RWS|BIO_FLAGS_SHOULD_RETRY))
  220. /* These should be used by the application to tell why we should retry */
  221. #define BIO_should_read(a) BIO_test_flags(a, BIO_FLAGS_READ)
  222. #define BIO_should_write(a) BIO_test_flags(a, BIO_FLAGS_WRITE)
  223. #define BIO_should_io_special(a) BIO_test_flags(a, BIO_FLAGS_IO_SPECIAL)
  224. #define BIO_retry_type(a) BIO_test_flags(a, BIO_FLAGS_RWS)
  225. #define BIO_should_retry(a) BIO_test_flags(a, BIO_FLAGS_SHOULD_RETRY)
  226. /* The next three are used in conjunction with the
  227. * BIO_should_io_special() condition. After this returns true,
  228. * BIO *BIO_get_retry_BIO(BIO *bio, int *reason); will walk the BIO
  229. * stack and return the 'reason' for the special and the offending BIO.
  230. * Given a BIO, BIO_get_retry_reason(bio) will return the code. */
  231. /* Returned from the SSL bio when the certificate retrieval code had an error */
  232. #define BIO_RR_SSL_X509_LOOKUP 0x01
  233. /* Returned from the connect BIO when a connect would have blocked */
  234. #define BIO_RR_CONNECT 0x02
  235. /* Returned from the accept BIO when an accept would have blocked */
  236. #define BIO_RR_ACCEPT 0x03
  237. /* These are passed by the BIO callback */
  238. #define BIO_CB_FREE 0x01
  239. #define BIO_CB_READ 0x02
  240. #define BIO_CB_WRITE 0x03
  241. #define BIO_CB_PUTS 0x04
  242. #define BIO_CB_GETS 0x05
  243. #define BIO_CB_CTRL 0x06
  244. /* The callback is called before and after the underling operation,
  245. * The BIO_CB_RETURN flag indicates if it is after the call */
  246. #define BIO_CB_RETURN 0x80
  247. #define BIO_CB_return(a) ((a)|BIO_CB_RETURN))
  248. #define BIO_cb_pre(a) (!((a)&BIO_CB_RETURN))
  249. #define BIO_cb_post(a) ((a)&BIO_CB_RETURN)
  250. long (*BIO_get_callback(const BIO *b)) (struct bio_st *,int,const char *,int, long,long);
  251. void BIO_set_callback(BIO *b,
  252. long (*callback)(struct bio_st *,int,const char *,int, long,long));
  253. char *BIO_get_callback_arg(const BIO *b);
  254. void BIO_set_callback_arg(BIO *b, char *arg);
  255. const char * BIO_method_name(const BIO *b);
  256. int BIO_method_type(const BIO *b);
  257. typedef void bio_info_cb(struct bio_st *, int, const char *, int, long, long);
  258. typedef struct bio_method_st
  259. {
  260. int type;
  261. const char *name;
  262. int (*bwrite)(BIO *, const char *, int);
  263. int (*bread)(BIO *, char *, int);
  264. int (*bputs)(BIO *, const char *);
  265. int (*bgets)(BIO *, char *, int);
  266. long (*ctrl)(BIO *, int, long, void *);
  267. int (*create)(BIO *);
  268. int (*destroy)(BIO *);
  269. long (*callback_ctrl)(BIO *, int, bio_info_cb *);
  270. } BIO_METHOD;
  271. struct bio_st
  272. {
  273. BIO_METHOD *method;
  274. /* bio, mode, argp, argi, argl, ret */
  275. long (*callback)(struct bio_st *,int,const char *,int, long,long);
  276. char *cb_arg; /* first argument for the callback */
  277. int init;
  278. int shutdown;
  279. int flags; /* extra storage */
  280. int retry_reason;
  281. int num;
  282. void *ptr;
  283. struct bio_st *next_bio; /* used by filter BIOs */
  284. struct bio_st *prev_bio; /* used by filter BIOs */
  285. int references;
  286. unsigned long num_read;
  287. unsigned long num_write;
  288. CRYPTO_EX_DATA ex_data;
  289. };
  290. DECLARE_STACK_OF(BIO)
  291. typedef struct bio_f_buffer_ctx_struct
  292. {
  293. /* Buffers are setup like this:
  294. *
  295. * <---------------------- size ----------------------->
  296. * +---------------------------------------------------+
  297. * | consumed | remaining | free space |
  298. * +---------------------------------------------------+
  299. * <-- off --><------- len ------->
  300. */
  301. /* BIO *bio; */ /* this is now in the BIO struct */
  302. int ibuf_size; /* how big is the input buffer */
  303. int obuf_size; /* how big is the output buffer */
  304. char *ibuf; /* the char array */
  305. int ibuf_len; /* how many bytes are in it */
  306. int ibuf_off; /* write/read offset */
  307. char *obuf; /* the char array */
  308. int obuf_len; /* how many bytes are in it */
  309. int obuf_off; /* write/read offset */
  310. } BIO_F_BUFFER_CTX;
  311. /* Prefix and suffix callback in ASN1 BIO */
  312. typedef int asn1_ps_func(BIO *b, unsigned char **pbuf, int *plen, void *parg);
  313. #ifndef OPENSSL_NO_SCTP
  314. /* SCTP parameter structs */
  315. struct bio_dgram_sctp_sndinfo
  316. {
  317. uint16_t snd_sid;
  318. uint16_t snd_flags;
  319. uint32_t snd_ppid;
  320. uint32_t snd_context;
  321. };
  322. struct bio_dgram_sctp_rcvinfo
  323. {
  324. uint16_t rcv_sid;
  325. uint16_t rcv_ssn;
  326. uint16_t rcv_flags;
  327. uint32_t rcv_ppid;
  328. uint32_t rcv_tsn;
  329. uint32_t rcv_cumtsn;
  330. uint32_t rcv_context;
  331. };
  332. struct bio_dgram_sctp_prinfo
  333. {
  334. uint16_t pr_policy;
  335. uint32_t pr_value;
  336. };
  337. #endif
  338. /* connect BIO stuff */
  339. #define BIO_CONN_S_BEFORE 1
  340. #define BIO_CONN_S_GET_IP 2
  341. #define BIO_CONN_S_GET_PORT 3
  342. #define BIO_CONN_S_CREATE_SOCKET 4
  343. #define BIO_CONN_S_CONNECT 5
  344. #define BIO_CONN_S_OK 6
  345. #define BIO_CONN_S_BLOCKED_CONNECT 7
  346. #define BIO_CONN_S_NBIO 8
  347. /*#define BIO_CONN_get_param_hostname BIO_ctrl */
  348. #define BIO_C_SET_CONNECT 100
  349. #define BIO_C_DO_STATE_MACHINE 101
  350. #define BIO_C_SET_NBIO 102
  351. #define BIO_C_SET_PROXY_PARAM 103
  352. #define BIO_C_SET_FD 104
  353. #define BIO_C_GET_FD 105
  354. #define BIO_C_SET_FILE_PTR 106
  355. #define BIO_C_GET_FILE_PTR 107
  356. #define BIO_C_SET_FILENAME 108
  357. #define BIO_C_SET_SSL 109
  358. #define BIO_C_GET_SSL 110
  359. #define BIO_C_SET_MD 111
  360. #define BIO_C_GET_MD 112
  361. #define BIO_C_GET_CIPHER_STATUS 113
  362. #define BIO_C_SET_BUF_MEM 114
  363. #define BIO_C_GET_BUF_MEM_PTR 115
  364. #define BIO_C_GET_BUFF_NUM_LINES 116
  365. #define BIO_C_SET_BUFF_SIZE 117
  366. #define BIO_C_SET_ACCEPT 118
  367. #define BIO_C_SSL_MODE 119
  368. #define BIO_C_GET_MD_CTX 120
  369. #define BIO_C_GET_PROXY_PARAM 121
  370. #define BIO_C_SET_BUFF_READ_DATA 122 /* data to read first */
  371. #define BIO_C_GET_CONNECT 123
  372. #define BIO_C_GET_ACCEPT 124
  373. #define BIO_C_SET_SSL_RENEGOTIATE_BYTES 125
  374. #define BIO_C_GET_SSL_NUM_RENEGOTIATES 126
  375. #define BIO_C_SET_SSL_RENEGOTIATE_TIMEOUT 127
  376. #define BIO_C_FILE_SEEK 128
  377. #define BIO_C_GET_CIPHER_CTX 129
  378. #define BIO_C_SET_BUF_MEM_EOF_RETURN 130/*return end of input value*/
  379. #define BIO_C_SET_BIND_MODE 131
  380. #define BIO_C_GET_BIND_MODE 132
  381. #define BIO_C_FILE_TELL 133
  382. #define BIO_C_GET_SOCKS 134
  383. #define BIO_C_SET_SOCKS 135
  384. #define BIO_C_SET_WRITE_BUF_SIZE 136/* for BIO_s_bio */
  385. #define BIO_C_GET_WRITE_BUF_SIZE 137
  386. #define BIO_C_MAKE_BIO_PAIR 138
  387. #define BIO_C_DESTROY_BIO_PAIR 139
  388. #define BIO_C_GET_WRITE_GUARANTEE 140
  389. #define BIO_C_GET_READ_REQUEST 141
  390. #define BIO_C_SHUTDOWN_WR 142
  391. #define BIO_C_NREAD0 143
  392. #define BIO_C_NREAD 144
  393. #define BIO_C_NWRITE0 145
  394. #define BIO_C_NWRITE 146
  395. #define BIO_C_RESET_READ_REQUEST 147
  396. #define BIO_C_SET_MD_CTX 148
  397. #define BIO_C_SET_PREFIX 149
  398. #define BIO_C_GET_PREFIX 150
  399. #define BIO_C_SET_SUFFIX 151
  400. #define BIO_C_GET_SUFFIX 152
  401. #define BIO_C_SET_EX_ARG 153
  402. #define BIO_C_GET_EX_ARG 154
  403. #define BIO_set_app_data(s,arg) BIO_set_ex_data(s,0,arg)
  404. #define BIO_get_app_data(s) BIO_get_ex_data(s,0)
  405. /* BIO_s_connect() and BIO_s_socks4a_connect() */
  406. #define BIO_set_conn_hostname(b,name) BIO_ctrl(b,BIO_C_SET_CONNECT,0,(char *)name)
  407. #define BIO_set_conn_port(b,port) BIO_ctrl(b,BIO_C_SET_CONNECT,1,(char *)port)
  408. #define BIO_set_conn_ip(b,ip) BIO_ctrl(b,BIO_C_SET_CONNECT,2,(char *)ip)
  409. #define BIO_set_conn_int_port(b,port) BIO_ctrl(b,BIO_C_SET_CONNECT,3,(char *)port)
  410. #define BIO_get_conn_hostname(b) BIO_ptr_ctrl(b,BIO_C_GET_CONNECT,0)
  411. #define BIO_get_conn_port(b) BIO_ptr_ctrl(b,BIO_C_GET_CONNECT,1)
  412. #define BIO_get_conn_ip(b) BIO_ptr_ctrl(b,BIO_C_GET_CONNECT,2)
  413. #define BIO_get_conn_int_port(b) BIO_int_ctrl(b,BIO_C_GET_CONNECT,3,0)
  414. #define BIO_set_nbio(b,n) BIO_ctrl(b,BIO_C_SET_NBIO,(n),NULL)
  415. /* BIO_s_accept_socket() */
  416. #define BIO_set_accept_port(b,name) BIO_ctrl(b,BIO_C_SET_ACCEPT,0,(char *)name)
  417. #define BIO_get_accept_port(b) BIO_ptr_ctrl(b,BIO_C_GET_ACCEPT,0)
  418. /* #define BIO_set_nbio(b,n) BIO_ctrl(b,BIO_C_SET_NBIO,(n),NULL) */
  419. #define BIO_set_nbio_accept(b,n) BIO_ctrl(b,BIO_C_SET_ACCEPT,1,(n)?(void *)"a":NULL)
  420. #define BIO_set_accept_bios(b,bio) BIO_ctrl(b,BIO_C_SET_ACCEPT,2,(char *)bio)
  421. #define BIO_BIND_NORMAL 0
  422. #define BIO_BIND_REUSEADDR_IF_UNUSED 1
  423. #define BIO_BIND_REUSEADDR 2
  424. #define BIO_set_bind_mode(b,mode) BIO_ctrl(b,BIO_C_SET_BIND_MODE,mode,NULL)
  425. #define BIO_get_bind_mode(b,mode) BIO_ctrl(b,BIO_C_GET_BIND_MODE,0,NULL)
  426. #define BIO_do_connect(b) BIO_do_handshake(b)
  427. #define BIO_do_accept(b) BIO_do_handshake(b)
  428. #define BIO_do_handshake(b) BIO_ctrl(b,BIO_C_DO_STATE_MACHINE,0,NULL)
  429. /* BIO_s_proxy_client() */
  430. #define BIO_set_url(b,url) BIO_ctrl(b,BIO_C_SET_PROXY_PARAM,0,(char *)(url))
  431. #define BIO_set_proxies(b,p) BIO_ctrl(b,BIO_C_SET_PROXY_PARAM,1,(char *)(p))
  432. /* BIO_set_nbio(b,n) */
  433. #define BIO_set_filter_bio(b,s) BIO_ctrl(b,BIO_C_SET_PROXY_PARAM,2,(char *)(s))
  434. /* BIO *BIO_get_filter_bio(BIO *bio); */
  435. #define BIO_set_proxy_cb(b,cb) BIO_callback_ctrl(b,BIO_C_SET_PROXY_PARAM,3,(void *(*cb)()))
  436. #define BIO_set_proxy_header(b,sk) BIO_ctrl(b,BIO_C_SET_PROXY_PARAM,4,(char *)sk)
  437. #define BIO_set_no_connect_return(b,bool) BIO_int_ctrl(b,BIO_C_SET_PROXY_PARAM,5,bool)
  438. #define BIO_get_proxy_header(b,skp) BIO_ctrl(b,BIO_C_GET_PROXY_PARAM,0,(char *)skp)
  439. #define BIO_get_proxies(b,pxy_p) BIO_ctrl(b,BIO_C_GET_PROXY_PARAM,1,(char *)(pxy_p))
  440. #define BIO_get_url(b,url) BIO_ctrl(b,BIO_C_GET_PROXY_PARAM,2,(char *)(url))
  441. #define BIO_get_no_connect_return(b) BIO_ctrl(b,BIO_C_GET_PROXY_PARAM,5,NULL)
  442. #define BIO_set_fd(b,fd,c) BIO_int_ctrl(b,BIO_C_SET_FD,c,fd)
  443. #define BIO_get_fd(b,c) BIO_ctrl(b,BIO_C_GET_FD,0,(char *)c)
  444. #define BIO_set_fp(b,fp,c) BIO_ctrl(b,BIO_C_SET_FILE_PTR,c,(char *)fp)
  445. #define BIO_get_fp(b,fpp) BIO_ctrl(b,BIO_C_GET_FILE_PTR,0,(char *)fpp)
  446. #define BIO_seek(b,ofs) (int)BIO_ctrl(b,BIO_C_FILE_SEEK,ofs,NULL)
  447. #define BIO_tell(b) (int)BIO_ctrl(b,BIO_C_FILE_TELL,0,NULL)
  448. /* name is cast to lose const, but might be better to route through a function
  449. so we can do it safely */
  450. #ifdef CONST_STRICT
  451. /* If you are wondering why this isn't defined, its because CONST_STRICT is
  452. * purely a compile-time kludge to allow const to be checked.
  453. */
  454. int BIO_read_filename(BIO *b,const char *name);
  455. #else
  456. #define BIO_read_filename(b,name) BIO_ctrl(b,BIO_C_SET_FILENAME, \
  457. BIO_CLOSE|BIO_FP_READ,(char *)name)
  458. #endif
  459. #define BIO_write_filename(b,name) BIO_ctrl(b,BIO_C_SET_FILENAME, \
  460. BIO_CLOSE|BIO_FP_WRITE,name)
  461. #define BIO_append_filename(b,name) BIO_ctrl(b,BIO_C_SET_FILENAME, \
  462. BIO_CLOSE|BIO_FP_APPEND,name)
  463. #define BIO_rw_filename(b,name) BIO_ctrl(b,BIO_C_SET_FILENAME, \
  464. BIO_CLOSE|BIO_FP_READ|BIO_FP_WRITE,name)
  465. /* WARNING WARNING, this ups the reference count on the read bio of the
  466. * SSL structure. This is because the ssl read BIO is now pointed to by
  467. * the next_bio field in the bio. So when you free the BIO, make sure
  468. * you are doing a BIO_free_all() to catch the underlying BIO. */
  469. #define BIO_set_ssl(b,ssl,c) BIO_ctrl(b,BIO_C_SET_SSL,c,(char *)ssl)
  470. #define BIO_get_ssl(b,sslp) BIO_ctrl(b,BIO_C_GET_SSL,0,(char *)sslp)
  471. #define BIO_set_ssl_mode(b,client) BIO_ctrl(b,BIO_C_SSL_MODE,client,NULL)
  472. #define BIO_set_ssl_renegotiate_bytes(b,num) \
  473. BIO_ctrl(b,BIO_C_SET_SSL_RENEGOTIATE_BYTES,num,NULL);
  474. #define BIO_get_num_renegotiates(b) \
  475. BIO_ctrl(b,BIO_C_GET_SSL_NUM_RENEGOTIATES,0,NULL);
  476. #define BIO_set_ssl_renegotiate_timeout(b,seconds) \
  477. BIO_ctrl(b,BIO_C_SET_SSL_RENEGOTIATE_TIMEOUT,seconds,NULL);
  478. /* defined in evp.h */
  479. /* #define BIO_set_md(b,md) BIO_ctrl(b,BIO_C_SET_MD,1,(char *)md) */
  480. #define BIO_get_mem_data(b,pp) BIO_ctrl(b,BIO_CTRL_INFO,0,(char *)pp)
  481. #define BIO_set_mem_buf(b,bm,c) BIO_ctrl(b,BIO_C_SET_BUF_MEM,c,(char *)bm)
  482. #define BIO_get_mem_ptr(b,pp) BIO_ctrl(b,BIO_C_GET_BUF_MEM_PTR,0,(char *)pp)
  483. #define BIO_set_mem_eof_return(b,v) \
  484. BIO_ctrl(b,BIO_C_SET_BUF_MEM_EOF_RETURN,v,NULL)
  485. /* For the BIO_f_buffer() type */
  486. #define BIO_get_buffer_num_lines(b) BIO_ctrl(b,BIO_C_GET_BUFF_NUM_LINES,0,NULL)
  487. #define BIO_set_buffer_size(b,size) BIO_ctrl(b,BIO_C_SET_BUFF_SIZE,size,NULL)
  488. #define BIO_set_read_buffer_size(b,size) BIO_int_ctrl(b,BIO_C_SET_BUFF_SIZE,size,0)
  489. #define BIO_set_write_buffer_size(b,size) BIO_int_ctrl(b,BIO_C_SET_BUFF_SIZE,size,1)
  490. #define BIO_set_buffer_read_data(b,buf,num) BIO_ctrl(b,BIO_C_SET_BUFF_READ_DATA,num,buf)
  491. /* Don't use the next one unless you know what you are doing :-) */
  492. #define BIO_dup_state(b,ret) BIO_ctrl(b,BIO_CTRL_DUP,0,(char *)(ret))
  493. #define BIO_reset(b) (int)BIO_ctrl(b,BIO_CTRL_RESET,0,NULL)
  494. #define BIO_eof(b) (int)BIO_ctrl(b,BIO_CTRL_EOF,0,NULL)
  495. #define BIO_set_close(b,c) (int)BIO_ctrl(b,BIO_CTRL_SET_CLOSE,(c),NULL)
  496. #define BIO_get_close(b) (int)BIO_ctrl(b,BIO_CTRL_GET_CLOSE,0,NULL)
  497. #define BIO_pending(b) (int)BIO_ctrl(b,BIO_CTRL_PENDING,0,NULL)
  498. #define BIO_wpending(b) (int)BIO_ctrl(b,BIO_CTRL_WPENDING,0,NULL)
  499. /* ...pending macros have inappropriate return type */
  500. size_t BIO_ctrl_pending(BIO *b);
  501. size_t BIO_ctrl_wpending(BIO *b);
  502. #define BIO_flush(b) (int)BIO_ctrl(b,BIO_CTRL_FLUSH,0,NULL)
  503. #define BIO_get_info_callback(b,cbp) (int)BIO_ctrl(b,BIO_CTRL_GET_CALLBACK,0, \
  504. cbp)
  505. #define BIO_set_info_callback(b,cb) (int)BIO_callback_ctrl(b,BIO_CTRL_SET_CALLBACK,cb)
  506. /* For the BIO_f_buffer() type */
  507. #define BIO_buffer_get_num_lines(b) BIO_ctrl(b,BIO_CTRL_GET,0,NULL)
  508. /* For BIO_s_bio() */
  509. #define BIO_set_write_buf_size(b,size) (int)BIO_ctrl(b,BIO_C_SET_WRITE_BUF_SIZE,size,NULL)
  510. #define BIO_get_write_buf_size(b,size) (size_t)BIO_ctrl(b,BIO_C_GET_WRITE_BUF_SIZE,size,NULL)
  511. #define BIO_make_bio_pair(b1,b2) (int)BIO_ctrl(b1,BIO_C_MAKE_BIO_PAIR,0,b2)
  512. #define BIO_destroy_bio_pair(b) (int)BIO_ctrl(b,BIO_C_DESTROY_BIO_PAIR,0,NULL)
  513. #define BIO_shutdown_wr(b) (int)BIO_ctrl(b, BIO_C_SHUTDOWN_WR, 0, NULL)
  514. /* macros with inappropriate type -- but ...pending macros use int too: */
  515. #define BIO_get_write_guarantee(b) (int)BIO_ctrl(b,BIO_C_GET_WRITE_GUARANTEE,0,NULL)
  516. #define BIO_get_read_request(b) (int)BIO_ctrl(b,BIO_C_GET_READ_REQUEST,0,NULL)
  517. size_t BIO_ctrl_get_write_guarantee(BIO *b);
  518. size_t BIO_ctrl_get_read_request(BIO *b);
  519. int BIO_ctrl_reset_read_request(BIO *b);
  520. /* ctrl macros for dgram */
  521. #define BIO_ctrl_dgram_connect(b,peer) \
  522. (int)BIO_ctrl(b,BIO_CTRL_DGRAM_CONNECT,0, (char *)peer)
  523. #define BIO_ctrl_set_connected(b, state, peer) \
  524. (int)BIO_ctrl(b, BIO_CTRL_DGRAM_SET_CONNECTED, state, (char *)peer)
  525. #define BIO_dgram_recv_timedout(b) \
  526. (int)BIO_ctrl(b, BIO_CTRL_DGRAM_GET_RECV_TIMER_EXP, 0, NULL)
  527. #define BIO_dgram_send_timedout(b) \
  528. (int)BIO_ctrl(b, BIO_CTRL_DGRAM_GET_SEND_TIMER_EXP, 0, NULL)
  529. #define BIO_dgram_get_peer(b,peer) \
  530. (int)BIO_ctrl(b, BIO_CTRL_DGRAM_GET_PEER, 0, (char *)peer)
  531. #define BIO_dgram_set_peer(b,peer) \
  532. (int)BIO_ctrl(b, BIO_CTRL_DGRAM_SET_PEER, 0, (char *)peer)
  533. /* These two aren't currently implemented */
  534. /* int BIO_get_ex_num(BIO *bio); */
  535. /* void BIO_set_ex_free_func(BIO *bio,int idx,void (*cb)()); */
  536. int BIO_set_ex_data(BIO *bio,int idx,void *data);
  537. void *BIO_get_ex_data(BIO *bio,int idx);
  538. int BIO_get_ex_new_index(long argl, void *argp, CRYPTO_EX_new *new_func,
  539. CRYPTO_EX_dup *dup_func, CRYPTO_EX_free *free_func);
  540. unsigned long BIO_number_read(BIO *bio);
  541. unsigned long BIO_number_written(BIO *bio);
  542. /* For BIO_f_asn1() */
  543. int BIO_asn1_set_prefix(BIO *b, asn1_ps_func *prefix,
  544. asn1_ps_func *prefix_free);
  545. int BIO_asn1_get_prefix(BIO *b, asn1_ps_func **pprefix,
  546. asn1_ps_func **pprefix_free);
  547. int BIO_asn1_set_suffix(BIO *b, asn1_ps_func *suffix,
  548. asn1_ps_func *suffix_free);
  549. int BIO_asn1_get_suffix(BIO *b, asn1_ps_func **psuffix,
  550. asn1_ps_func **psuffix_free);
  551. # ifndef OPENSSL_NO_FP_API
  552. BIO_METHOD *BIO_s_file(void );
  553. BIO *BIO_new_file(const char *filename, const char *mode);
  554. BIO *BIO_new_fp(FILE *stream, int close_flag);
  555. # define BIO_s_file_internal BIO_s_file
  556. # endif
  557. BIO * BIO_new(BIO_METHOD *type);
  558. int BIO_set(BIO *a,BIO_METHOD *type);
  559. int BIO_free(BIO *a);
  560. void BIO_vfree(BIO *a);
  561. int BIO_read(BIO *b, void *data, int len);
  562. int BIO_gets(BIO *bp,char *buf, int size);
  563. int BIO_write(BIO *b, const void *data, int len);
  564. int BIO_puts(BIO *bp,const char *buf);
  565. int BIO_indent(BIO *b,int indent,int max);
  566. long BIO_ctrl(BIO *bp,int cmd,long larg,void *parg);
  567. long BIO_callback_ctrl(BIO *b, int cmd, void (*fp)(struct bio_st *, int, const char *, int, long, long));
  568. char * BIO_ptr_ctrl(BIO *bp,int cmd,long larg);
  569. long BIO_int_ctrl(BIO *bp,int cmd,long larg,int iarg);
  570. BIO * BIO_push(BIO *b,BIO *append);
  571. BIO * BIO_pop(BIO *b);
  572. void BIO_free_all(BIO *a);
  573. BIO * BIO_find_type(BIO *b,int bio_type);
  574. BIO * BIO_next(BIO *b);
  575. BIO * BIO_get_retry_BIO(BIO *bio, int *reason);
  576. int BIO_get_retry_reason(BIO *bio);
  577. BIO * BIO_dup_chain(BIO *in);
  578. int BIO_nread0(BIO *bio, char **buf);
  579. int BIO_nread(BIO *bio, char **buf, int num);
  580. int BIO_nwrite0(BIO *bio, char **buf);
  581. int BIO_nwrite(BIO *bio, char **buf, int num);
  582. long BIO_debug_callback(BIO *bio,int cmd,const char *argp,int argi,
  583. long argl,long ret);
  584. BIO_METHOD *BIO_s_mem(void);
  585. BIO *BIO_new_mem_buf(void *buf, int len);
  586. BIO_METHOD *BIO_s_socket(void);
  587. BIO_METHOD *BIO_s_connect(void);
  588. BIO_METHOD *BIO_s_accept(void);
  589. BIO_METHOD *BIO_s_fd(void);
  590. #ifndef OPENSSL_SYS_OS2
  591. BIO_METHOD *BIO_s_log(void);
  592. #endif
  593. BIO_METHOD *BIO_s_bio(void);
  594. BIO_METHOD *BIO_s_null(void);
  595. BIO_METHOD *BIO_f_null(void);
  596. BIO_METHOD *BIO_f_buffer(void);
  597. #ifdef OPENSSL_SYS_VMS
  598. BIO_METHOD *BIO_f_linebuffer(void);
  599. #endif
  600. BIO_METHOD *BIO_f_nbio_test(void);
  601. #ifndef OPENSSL_NO_DGRAM
  602. BIO_METHOD *BIO_s_datagram(void);
  603. #ifndef OPENSSL_NO_SCTP
  604. BIO_METHOD *BIO_s_datagram_sctp(void);
  605. #endif
  606. #endif
  607. /* BIO_METHOD *BIO_f_ber(void); */
  608. int BIO_sock_should_retry(int i);
  609. int BIO_sock_non_fatal_error(int error);
  610. int BIO_dgram_non_fatal_error(int error);
  611. int BIO_fd_should_retry(int i);
  612. int BIO_fd_non_fatal_error(int error);
  613. int BIO_dump_cb(int (*cb)(const void *data, size_t len, void *u),
  614. void *u, const char *s, int len);
  615. int BIO_dump_indent_cb(int (*cb)(const void *data, size_t len, void *u),
  616. void *u, const char *s, int len, int indent);
  617. int BIO_dump(BIO *b,const char *bytes,int len);
  618. int BIO_dump_indent(BIO *b,const char *bytes,int len,int indent);
  619. #ifndef OPENSSL_NO_FP_API
  620. int BIO_dump_fp(FILE *fp, const char *s, int len);
  621. int BIO_dump_indent_fp(FILE *fp, const char *s, int len, int indent);
  622. #endif
  623. struct hostent *BIO_gethostbyname(const char *name);
  624. /* We might want a thread-safe interface too:
  625. * struct hostent *BIO_gethostbyname_r(const char *name,
  626. * struct hostent *result, void *buffer, size_t buflen);
  627. * or something similar (caller allocates a struct hostent,
  628. * pointed to by "result", and additional buffer space for the various
  629. * substructures; if the buffer does not suffice, NULL is returned
  630. * and an appropriate error code is set).
  631. */
  632. int BIO_sock_error(int sock);
  633. int BIO_socket_ioctl(int fd, long type, void *arg);
  634. int BIO_socket_nbio(int fd,int mode);
  635. int BIO_get_port(const char *str, unsigned short *port_ptr);
  636. int BIO_get_host_ip(const char *str, unsigned char *ip);
  637. int BIO_get_accept_socket(char *host_port,int mode);
  638. int BIO_accept(int sock,char **ip_port);
  639. int BIO_sock_init(void );
  640. void BIO_sock_cleanup(void);
  641. int BIO_set_tcp_ndelay(int sock,int turn_on);
  642. BIO *BIO_new_socket(int sock, int close_flag);
  643. BIO *BIO_new_dgram(int fd, int close_flag);
  644. #ifndef OPENSSL_NO_SCTP
  645. BIO *BIO_new_dgram_sctp(int fd, int close_flag);
  646. int BIO_dgram_is_sctp(BIO *bio);
  647. int BIO_dgram_sctp_notification_cb(BIO *b,
  648. void (*handle_notifications)(BIO *bio, void *context, void *buf),
  649. void *context);
  650. int BIO_dgram_sctp_wait_for_dry(BIO *b);
  651. int BIO_dgram_sctp_msg_waiting(BIO *b);
  652. #endif
  653. BIO *BIO_new_fd(int fd, int close_flag);
  654. BIO *BIO_new_connect(char *host_port);
  655. BIO *BIO_new_accept(char *host_port);
  656. int BIO_new_bio_pair(BIO **bio1, size_t writebuf1,
  657. BIO **bio2, size_t writebuf2);
  658. /* If successful, returns 1 and in *bio1, *bio2 two BIO pair endpoints.
  659. * Otherwise returns 0 and sets *bio1 and *bio2 to NULL.
  660. * Size 0 uses default value.
  661. */
  662. void BIO_copy_next_retry(BIO *b);
  663. /*long BIO_ghbn_ctrl(int cmd,int iarg,char *parg);*/
  664. #ifdef __GNUC__
  665. # define __bio_h__attr__ __attribute__
  666. #else
  667. # define __bio_h__attr__(x)
  668. #endif
  669. int BIO_printf(BIO *bio, const char *format, ...)
  670. __bio_h__attr__((__format__(__printf__,2,3)));
  671. int BIO_vprintf(BIO *bio, const char *format, va_list args)
  672. __bio_h__attr__((__format__(__printf__,2,0)));
  673. int BIO_snprintf(char *buf, size_t n, const char *format, ...)
  674. __bio_h__attr__((__format__(__printf__,3,4)));
  675. int BIO_vsnprintf(char *buf, size_t n, const char *format, va_list args)
  676. __bio_h__attr__((__format__(__printf__,3,0)));
  677. #undef __bio_h__attr__
  678. /* BEGIN ERROR CODES */
  679. /* The following lines are auto generated by the script mkerr.pl. Any changes
  680. * made after this point may be overwritten when the script is next run.
  681. */
  682. void ERR_load_BIO_strings(void);
  683. /* Error codes for the BIO functions. */
  684. /* Function codes. */
  685. #define BIO_F_ACPT_STATE 100
  686. #define BIO_F_BIO_ACCEPT 101
  687. #define BIO_F_BIO_BER_GET_HEADER 102
  688. #define BIO_F_BIO_CALLBACK_CTRL 131
  689. #define BIO_F_BIO_CTRL 103
  690. #define BIO_F_BIO_GETHOSTBYNAME 120
  691. #define BIO_F_BIO_GETS 104
  692. #define BIO_F_BIO_GET_ACCEPT_SOCKET 105
  693. #define BIO_F_BIO_GET_HOST_IP 106
  694. #define BIO_F_BIO_GET_PORT 107
  695. #define BIO_F_BIO_MAKE_PAIR 121
  696. #define BIO_F_BIO_NEW 108
  697. #define BIO_F_BIO_NEW_FILE 109
  698. #define BIO_F_BIO_NEW_MEM_BUF 126
  699. #define BIO_F_BIO_NREAD 123
  700. #define BIO_F_BIO_NREAD0 124
  701. #define BIO_F_BIO_NWRITE 125
  702. #define BIO_F_BIO_NWRITE0 122
  703. #define BIO_F_BIO_PUTS 110
  704. #define BIO_F_BIO_READ 111
  705. #define BIO_F_BIO_SOCK_INIT 112
  706. #define BIO_F_BIO_WRITE 113
  707. #define BIO_F_BUFFER_CTRL 114
  708. #define BIO_F_CONN_CTRL 127
  709. #define BIO_F_CONN_STATE 115
  710. #define BIO_F_DGRAM_SCTP_READ 132
  711. #define BIO_F_FILE_CTRL 116
  712. #define BIO_F_FILE_READ 130
  713. #define BIO_F_LINEBUFFER_CTRL 129
  714. #define BIO_F_MEM_READ 128
  715. #define BIO_F_MEM_WRITE 117
  716. #define BIO_F_SSL_NEW 118
  717. #define BIO_F_WSASTARTUP 119
  718. /* Reason codes. */
  719. #define BIO_R_ACCEPT_ERROR 100
  720. #define BIO_R_BAD_FOPEN_MODE 101
  721. #define BIO_R_BAD_HOSTNAME_LOOKUP 102
  722. #define BIO_R_BROKEN_PIPE 124
  723. #define BIO_R_CONNECT_ERROR 103
  724. #define BIO_R_EOF_ON_MEMORY_BIO 127
  725. #define BIO_R_ERROR_SETTING_NBIO 104
  726. #define BIO_R_ERROR_SETTING_NBIO_ON_ACCEPTED_SOCKET 105
  727. #define BIO_R_ERROR_SETTING_NBIO_ON_ACCEPT_SOCKET 106
  728. #define BIO_R_GETHOSTBYNAME_ADDR_IS_NOT_AF_INET 107
  729. #define BIO_R_INVALID_ARGUMENT 125
  730. #define BIO_R_INVALID_IP_ADDRESS 108
  731. #define BIO_R_IN_USE 123
  732. #define BIO_R_KEEPALIVE 109
  733. #define BIO_R_NBIO_CONNECT_ERROR 110
  734. #define BIO_R_NO_ACCEPT_PORT_SPECIFIED 111
  735. #define BIO_R_NO_HOSTNAME_SPECIFIED 112
  736. #define BIO_R_NO_PORT_DEFINED 113
  737. #define BIO_R_NO_PORT_SPECIFIED 114
  738. #define BIO_R_NO_SUCH_FILE 128
  739. #define BIO_R_NULL_PARAMETER 115
  740. #define BIO_R_TAG_MISMATCH 116
  741. #define BIO_R_UNABLE_TO_BIND_SOCKET 117
  742. #define BIO_R_UNABLE_TO_CREATE_SOCKET 118
  743. #define BIO_R_UNABLE_TO_LISTEN_SOCKET 119
  744. #define BIO_R_UNINITIALIZED 120
  745. #define BIO_R_UNSUPPORTED_METHOD 121
  746. #define BIO_R_WRITE_TO_READ_ONLY_BIO 126
  747. #define BIO_R_WSASTARTUP 122
  748. #ifdef __cplusplus
  749. }
  750. #endif
  751. #endif