亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? bio.h

?? OpenSSL 0.9.8k 最新版OpenSSL
?? H
?? 第 1 頁 / 共 3 頁
字號:
/* crypto/bio/bio.h *//* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * * This package is an SSL implementation written * by Eric Young (eay@cryptsoft.com). * The implementation was written so as to conform with Netscapes SSL. *  * This library is free for commercial and non-commercial use as long as * the following conditions are aheared to.  The following conditions * apply to all code found in this distribution, be it the RC4, RSA, * lhash, DES, etc., code; not just the SSL code.  The SSL documentation * included with this distribution is covered by the same copyright terms * except that the holder is Tim Hudson (tjh@cryptsoft.com). *  * Copyright remains Eric Young's, and as such any Copyright notices in * the code are not to be removed. * If this package is used in a product, Eric Young should be given attribution * as the author of the parts of the library used. * This can be in the form of a textual message at program startup or * in documentation (online or textual) provided with the package. *  * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the copyright *    notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright *    notice, this list of conditions and the following disclaimer in the *    documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software *    must display the following acknowledgement: *    "This product includes cryptographic software written by *     Eric Young (eay@cryptsoft.com)" *    The word 'cryptographic' can be left out if the rouines from the library *    being used are not cryptographic related :-). * 4. If you include any Windows specific code (or a derivative thereof) from  *    the apps directory (application code) you must include an acknowledgement: *    "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" *  * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. *  * The licence and distribution terms for any publically available version or * derivative of this code cannot be changed.  i.e. this code cannot simply be * copied and put under another distribution licence * [including the GNU Public Licence.] */#ifndef HEADER_BIO_H#define HEADER_BIO_H#include <openssl/e_os2.h>#ifndef OPENSSL_NO_FP_API# include <stdio.h>#endif#include <stdarg.h>#include <openssl/crypto.h>#ifdef  __cplusplusextern "C" {#endif/* These are the 'types' of BIOs */#define BIO_TYPE_NONE		0#define BIO_TYPE_MEM		(1|0x0400)#define BIO_TYPE_FILE		(2|0x0400)#define BIO_TYPE_FD		(4|0x0400|0x0100)#define BIO_TYPE_SOCKET		(5|0x0400|0x0100)#define BIO_TYPE_NULL		(6|0x0400)#define BIO_TYPE_SSL		(7|0x0200)#define BIO_TYPE_MD		(8|0x0200)		/* passive filter */#define BIO_TYPE_BUFFER		(9|0x0200)		/* filter */#define BIO_TYPE_CIPHER		(10|0x0200)		/* filter */#define BIO_TYPE_BASE64		(11|0x0200)		/* filter */#define BIO_TYPE_CONNECT	(12|0x0400|0x0100)	/* socket - connect */#define BIO_TYPE_ACCEPT		(13|0x0400|0x0100)	/* socket for accept */#define BIO_TYPE_PROXY_CLIENT	(14|0x0200)		/* client proxy BIO */#define BIO_TYPE_PROXY_SERVER	(15|0x0200)		/* server proxy BIO */#define BIO_TYPE_NBIO_TEST	(16|0x0200)		/* server proxy BIO */#define BIO_TYPE_NULL_FILTER	(17|0x0200)#define BIO_TYPE_BER		(18|0x0200)		/* BER -> bin filter */#define BIO_TYPE_BIO		(19|0x0400)		/* (half a) BIO pair */#define BIO_TYPE_LINEBUFFER	(20|0x0200)		/* filter */#define BIO_TYPE_DGRAM		(21|0x0400|0x0100)#define BIO_TYPE_COMP 		(23|0x0200)		/* filter */#define BIO_TYPE_DESCRIPTOR	0x0100	/* socket, fd, connect or accept */#define BIO_TYPE_FILTER		0x0200#define BIO_TYPE_SOURCE_SINK	0x0400/* BIO_FILENAME_READ|BIO_CLOSE to open or close on free. * BIO_set_fp(in,stdin,BIO_NOCLOSE); */#define BIO_NOCLOSE		0x00#define BIO_CLOSE		0x01/* These are used in the following macros and are passed to * BIO_ctrl() */#define BIO_CTRL_RESET		1  /* opt - rewind/zero etc */#define BIO_CTRL_EOF		2  /* opt - are we at the eof */#define BIO_CTRL_INFO		3  /* opt - extra tit-bits */#define BIO_CTRL_SET		4  /* man - set the 'IO' type */#define BIO_CTRL_GET		5  /* man - get the 'IO' type */#define BIO_CTRL_PUSH		6  /* opt - internal, used to signify change */#define BIO_CTRL_POP		7  /* opt - internal, used to signify change */#define BIO_CTRL_GET_CLOSE	8  /* man - set the 'close' on free */#define BIO_CTRL_SET_CLOSE	9  /* man - set the 'close' on free */#define BIO_CTRL_PENDING	10  /* opt - is their more data buffered */#define BIO_CTRL_FLUSH		11  /* opt - 'flush' buffered output */#define BIO_CTRL_DUP		12  /* man - extra stuff for 'duped' BIO */#define BIO_CTRL_WPENDING	13  /* opt - number of bytes still to write *//* callback is int cb(BIO *bio,state,ret); */#define BIO_CTRL_SET_CALLBACK	14  /* opt - set callback function */#define BIO_CTRL_GET_CALLBACK	15  /* opt - set callback function */#define BIO_CTRL_SET_FILENAME	30	/* BIO_s_file special *//* dgram BIO stuff */#define BIO_CTRL_DGRAM_CONNECT       31  /* BIO dgram special */#define BIO_CTRL_DGRAM_SET_CONNECTED 32  /* allow for an externally					  * connected socket to be					  * passed in */ #define BIO_CTRL_DGRAM_SET_RECV_TIMEOUT 33 /* setsockopt, essentially */#define BIO_CTRL_DGRAM_GET_RECV_TIMEOUT 34 /* getsockopt, essentially */#define BIO_CTRL_DGRAM_SET_SEND_TIMEOUT 35 /* setsockopt, essentially */#define BIO_CTRL_DGRAM_GET_SEND_TIMEOUT 36 /* getsockopt, essentially */#define BIO_CTRL_DGRAM_GET_RECV_TIMER_EXP 37 /* flag whether the last */#define BIO_CTRL_DGRAM_GET_SEND_TIMER_EXP 38 /* I/O operation tiemd out */					/* #ifdef IP_MTU_DISCOVER */#define BIO_CTRL_DGRAM_MTU_DISCOVER       39 /* set DF bit on egress packets *//* #endif */#define BIO_CTRL_DGRAM_QUERY_MTU          40 /* as kernel for current MTU */#define BIO_CTRL_DGRAM_GET_MTU            41 /* get cached value for MTU */#define BIO_CTRL_DGRAM_SET_MTU            42 /* set cached value for					      * MTU. want to use this					      * if asking the kernel					      * fails */#define BIO_CTRL_DGRAM_MTU_EXCEEDED       43 /* check whether the MTU					      * was exceed in the					      * previous write					      * operation */#define BIO_CTRL_DGRAM_SET_PEER           44 /* Destination for the data *//* modifiers */#define BIO_FP_READ		0x02#define BIO_FP_WRITE		0x04#define BIO_FP_APPEND		0x08#define BIO_FP_TEXT		0x10#define BIO_FLAGS_READ		0x01#define BIO_FLAGS_WRITE		0x02#define BIO_FLAGS_IO_SPECIAL	0x04#define BIO_FLAGS_RWS (BIO_FLAGS_READ|BIO_FLAGS_WRITE|BIO_FLAGS_IO_SPECIAL)#define BIO_FLAGS_SHOULD_RETRY	0x08#ifndef	BIO_FLAGS_UPLINK/* "UPLINK" flag denotes file descriptors provided by application.   It defaults to 0, as most platforms don't require UPLINK interface. */#define	BIO_FLAGS_UPLINK	0#endif/* Used in BIO_gethostbyname() */#define BIO_GHBN_CTRL_HITS		1#define BIO_GHBN_CTRL_MISSES		2#define BIO_GHBN_CTRL_CACHE_SIZE	3#define BIO_GHBN_CTRL_GET_ENTRY		4#define BIO_GHBN_CTRL_FLUSH		5/* Mostly used in the SSL BIO *//* Not used anymore * #define BIO_FLAGS_PROTOCOL_DELAYED_READ 0x10 * #define BIO_FLAGS_PROTOCOL_DELAYED_WRITE 0x20 * #define BIO_FLAGS_PROTOCOL_STARTUP	0x40 */#define BIO_FLAGS_BASE64_NO_NL	0x100/* This is used with memory BIOs: it means we shouldn't free up or change the * data in any way. */#define BIO_FLAGS_MEM_RDONLY	0x200typedef struct bio_st BIO;void BIO_set_flags(BIO *b, int flags);int  BIO_test_flags(const BIO *b, int flags);void BIO_clear_flags(BIO *b, int flags);#define BIO_get_flags(b) BIO_test_flags(b, ~(0x0))#define BIO_set_retry_special(b) \		BIO_set_flags(b, (BIO_FLAGS_IO_SPECIAL|BIO_FLAGS_SHOULD_RETRY))#define BIO_set_retry_read(b) \		BIO_set_flags(b, (BIO_FLAGS_READ|BIO_FLAGS_SHOULD_RETRY))#define BIO_set_retry_write(b) \		BIO_set_flags(b, (BIO_FLAGS_WRITE|BIO_FLAGS_SHOULD_RETRY))/* These are normally used internally in BIOs */#define BIO_clear_retry_flags(b) \		BIO_clear_flags(b, (BIO_FLAGS_RWS|BIO_FLAGS_SHOULD_RETRY))#define BIO_get_retry_flags(b) \		BIO_test_flags(b, (BIO_FLAGS_RWS|BIO_FLAGS_SHOULD_RETRY))/* These should be used by the application to tell why we should retry */#define BIO_should_read(a)		BIO_test_flags(a, BIO_FLAGS_READ)#define BIO_should_write(a)		BIO_test_flags(a, BIO_FLAGS_WRITE)#define BIO_should_io_special(a)	BIO_test_flags(a, BIO_FLAGS_IO_SPECIAL)#define BIO_retry_type(a)		BIO_test_flags(a, BIO_FLAGS_RWS)#define BIO_should_retry(a)		BIO_test_flags(a, BIO_FLAGS_SHOULD_RETRY)/* The next three are used in conjunction with the * BIO_should_io_special() condition.  After this returns true, * BIO *BIO_get_retry_BIO(BIO *bio, int *reason); will walk the BIO  * stack and return the 'reason' for the special and the offending BIO. * Given a BIO, BIO_get_retry_reason(bio) will return the code. *//* Returned from the SSL bio when the certificate retrieval code had an error */#define BIO_RR_SSL_X509_LOOKUP		0x01/* Returned from the connect BIO when a connect would have blocked */#define BIO_RR_CONNECT			0x02/* Returned from the accept BIO when an accept would have blocked */#define BIO_RR_ACCEPT			0x03/* These are passed by the BIO callback */#define BIO_CB_FREE	0x01#define BIO_CB_READ	0x02#define BIO_CB_WRITE	0x03#define BIO_CB_PUTS	0x04#define BIO_CB_GETS	0x05#define BIO_CB_CTRL	0x06/* The callback is called before and after the underling operation, * The BIO_CB_RETURN flag indicates if it is after the call */#define BIO_CB_RETURN	0x80#define BIO_CB_return(a) ((a)|BIO_CB_RETURN))#define BIO_cb_pre(a)	(!((a)&BIO_CB_RETURN))#define BIO_cb_post(a)	((a)&BIO_CB_RETURN)long (*BIO_get_callback(const BIO *b)) (struct bio_st *,int,const char *,int, long,long);void BIO_set_callback(BIO *b, 	long (*callback)(struct bio_st *,int,const char *,int, long,long));char *BIO_get_callback_arg(const BIO *b);void BIO_set_callback_arg(BIO *b, char *arg);

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲一二三四区不卡| 91视频www| 91成人免费网站| 久久日韩精品一区二区五区| 毛片av一区二区三区| 成人福利视频在线| 日韩欧美中文一区| 亚洲永久精品大片| 99亚偷拍自图区亚洲| 久久久久久毛片| 久久国产精品无码网站| 色88888久久久久久影院按摩| 国产亚洲精品bt天堂精选| 欧美a一区二区| 欧美日韩视频在线一区二区| 亚洲色图制服丝袜| 国产成人av电影| 26uuu亚洲综合色| 麻豆成人免费电影| 这里只有精品视频在线观看| 伊人一区二区三区| 99re成人精品视频| 国产精品乱码一区二三区小蝌蚪| 久久av资源网| 精品国产一区二区三区av性色| 亚洲6080在线| 欧美日韩国产精品自在自线| 亚洲综合在线免费观看| 色94色欧美sute亚洲线路一ni| 国产精品理论片在线观看| 国产成人精品aa毛片| 国产午夜精品理论片a级大结局| 99久久久久久99| 亚洲欧美在线视频| 成人午夜在线视频| 中文字幕一区二区三区四区不卡 | 成人午夜视频福利| 久久久精品国产免大香伊| 久久不见久久见免费视频1| 日韩三级视频中文字幕| 美女爽到高潮91| 国产色产综合色产在线视频 | 美女一区二区三区在线观看| 91精品国产综合久久福利| 日本不卡高清视频| 欧美精品一区二区三| 国产激情精品久久久第一区二区| 国产精品女上位| 欧美中文字幕一区二区三区亚洲| 日日欢夜夜爽一区| 久久伊人中文字幕| 99精品欧美一区二区三区综合在线| 日韩一区欧美一区| 欧美日韩一区不卡| 国产一区二区三区综合| 国产精品成人一区二区三区夜夜夜| 日本高清视频一区二区| 美女在线视频一区| 国产精品福利av| 欧美精品自拍偷拍动漫精品| 男女视频一区二区| 国产精品卡一卡二卡三| 欧美日韩你懂得| 国产高清不卡二三区| 亚洲国产婷婷综合在线精品| 久久综合色鬼综合色| 91婷婷韩国欧美一区二区| 免费在线成人网| **欧美大码日韩| 欧美一级日韩一级| aaa欧美大片| 免费在线看一区| 亚洲视频在线一区观看| 欧美一区二区福利在线| 成人免费视频视频在线观看免费| 亚洲高清免费观看高清完整版在线观看| 日韩免费观看2025年上映的电影| 97se亚洲国产综合自在线| 毛片av中文字幕一区二区| 日韩毛片一二三区| 精品剧情在线观看| 欧美日韩午夜精品| 91免费在线播放| 国产精品综合久久| 日韩电影在线观看电影| 亚洲麻豆国产自偷在线| 亚洲精品一区二区三区在线观看| 91成人免费在线| www.欧美日韩国产在线| 国产一区二区成人久久免费影院 | 欧美在线观看18| 国产.精品.日韩.另类.中文.在线.播放 | 亚洲国产欧美在线| 欧美激情一区三区| www久久久久| 日韩精品在线网站| 欧美人xxxx| 欧美婷婷六月丁香综合色| 9色porny自拍视频一区二区| 国内精品伊人久久久久影院对白| 日韩va亚洲va欧美va久久| 亚洲综合一区二区精品导航| 亚洲欧美激情在线| 最新国产精品久久精品| 国产精品污www在线观看| 国产婷婷色一区二区三区四区| 日韩免费高清av| 日韩一区二区三区四区| 91精品国产高清一区二区三区蜜臀 | 国产成人亚洲精品青草天美| 九色综合狠狠综合久久| 蜜臀av亚洲一区中文字幕| 天堂午夜影视日韩欧美一区二区| 亚洲综合在线观看视频| 亚洲自拍偷拍av| 亚洲电影在线播放| 日韩精品久久理论片| 丝袜诱惑制服诱惑色一区在线观看 | 欧美老肥妇做.爰bbww| 欧美久久久久久久久久| 日韩午夜电影在线观看| 日韩欧美国产综合一区| 精品处破学生在线二十三| 久久综合一区二区| 国产精品网站一区| 国产精品蜜臀在线观看| 中文字幕乱码亚洲精品一区| ...xxx性欧美| 天堂成人国产精品一区| 狠狠狠色丁香婷婷综合久久五月| 国产尤物一区二区在线| 成人av在线播放网址| 色av成人天堂桃色av| 欧美一区二区三区性视频| 精品国产91久久久久久久妲己| 国产女主播在线一区二区| 日本亚洲一区二区| 国产91精品免费| 欧亚洲嫩模精品一区三区| 欧美一区二区免费视频| 久久久不卡网国产精品二区 | 成人av免费在线观看| 色婷婷综合久久久久中文| 欧美日韩色一区| 久久新电视剧免费观看| 亚洲三级理论片| 日日摸夜夜添夜夜添精品视频| 国模一区二区三区白浆| 91麻豆免费在线观看| 3atv一区二区三区| 国产精品久久久久久久久久免费看| 亚洲综合在线观看视频| 国模套图日韩精品一区二区| 色综合中文综合网| 一区二区三区国产精品| 麻豆国产精品777777在线| 99久久综合国产精品| 欧美一级片免费看| 亚洲视频一区在线| 国产一区二区看久久| 在线观看成人免费视频| 国产亚洲污的网站| 免费xxxx性欧美18vr| 91理论电影在线观看| 欧美一区二区不卡视频| 亚洲欧美欧美一区二区三区| 国产在线不卡视频| 3atv在线一区二区三区| 欧美aaaaaa午夜精品| 在线视频欧美精品| 中文字幕欧美三区| 九九久久精品视频| 欧美日本国产一区| 亚洲美女少妇撒尿| 99久久久国产精品| 国产精品全国免费观看高清| 狠狠狠色丁香婷婷综合激情 | 国产欧美日韩激情| 久久99国内精品| 欧美高清www午色夜在线视频| 日韩理论在线观看| 99久久国产综合精品色伊| 国产三级欧美三级日产三级99| 日韩高清在线不卡| 欧美日韩中文国产| 亚洲一区二区在线观看视频| 91啦中文在线观看| 1000精品久久久久久久久| 成人黄色网址在线观看| 亚洲国产成人午夜在线一区| 国产伦精一区二区三区| 久久久综合激的五月天| 国产乱国产乱300精品| 2023国产一二三区日本精品2022| 日韩精品视频网站| 日韩精品一区二区三区四区视频| 日韩精彩视频在线观看| 欧美人伦禁忌dvd放荡欲情| 午夜久久久久久久久| 欧美日韩黄色影视|