亚洲欧美第一页_禁久久精品乱码_粉嫩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一区二区三区免费野_久草精品视频
本田岬高潮一区二区三区| 欧美日本在线观看| 欧美久久久一区| 国产亚洲1区2区3区| 日韩国产欧美在线视频| 91蜜桃传媒精品久久久一区二区| 日韩美女一区二区三区| 亚洲综合免费观看高清完整版| 国产麻豆午夜三级精品| 欧美精品一卡两卡| 亚洲三级电影网站| 国产成人精品三级麻豆| 日韩片之四级片| 午夜伊人狠狠久久| 一本久久综合亚洲鲁鲁五月天 | 国产精品久久久久影视| 久久99九九99精品| 91精品国产色综合久久| 夜夜嗨av一区二区三区网页 | 日韩三级在线观看| 天天综合色天天综合色h| 色婷婷狠狠综合| 亚洲欧美另类在线| www.色综合.com| 国产精品国产馆在线真实露脸| 国内精品久久久久影院薰衣草| 日韩午夜电影av| 麻豆精品视频在线观看| 日韩午夜精品电影| 久久电影国产免费久久电影| 日韩一区二区三区在线| 蜜桃传媒麻豆第一区在线观看| 欧美高清www午色夜在线视频| 亚洲国产欧美日韩另类综合| 91看片淫黄大片一级在线观看| 国产精品福利一区二区| 99精品欧美一区二区三区综合在线| 国产精品黄色在线观看| 91影院在线观看| 亚洲线精品一区二区三区八戒| 在线视频中文字幕一区二区| 亚洲成人自拍网| 日韩一级黄色片| 国产老妇另类xxxxx| 欧美高清在线精品一区| 不卡一二三区首页| 亚洲精品国产a| 91精品国产综合久久久久| 乱一区二区av| 中文字幕巨乱亚洲| 99久久精品国产精品久久| 亚洲免费观看高清| 欧美精品丝袜中出| 美女任你摸久久| 欧美激情综合网| 欧洲亚洲国产日韩| 日本欧美在线观看| 国产精品你懂的在线| 欧美在线观看一二区| 欧美aⅴ一区二区三区视频| 久久久久国产精品麻豆ai换脸| 91在线你懂得| 日韩av网站免费在线| 国产日韩欧美高清在线| 欧洲精品一区二区三区在线观看| 午夜精品一区二区三区三上悠亚| 精品女同一区二区| 色哟哟一区二区| 国内精品视频666| 亚洲视频一二三区| 欧美变态凌虐bdsm| 91久久精品午夜一区二区| 久久爱www久久做| 亚洲激情图片一区| 久久亚洲精品国产精品紫薇| 91麻豆.com| 国产福利不卡视频| 亚洲成人午夜电影| 国产精品三级久久久久三级| 欧美日韩国产精选| 91亚洲精品久久久蜜桃网站 | 精品三级在线观看| av电影在线观看不卡| 老汉av免费一区二区三区| 亚洲免费av网站| 国产日韩欧美一区二区三区乱码| 欧美日韩国产精品自在自线| 不卡的av在线| 国产成人免费网站| 紧缚奴在线一区二区三区| 丝袜亚洲另类丝袜在线| 综合久久一区二区三区| 国产亚洲va综合人人澡精品| 日韩一区二区电影在线| 欧美视频在线一区二区三区| 99久久夜色精品国产网站| 国产乱子伦视频一区二区三区| 日韩国产欧美一区二区三区| 一区二区三区中文字幕| 中文字幕巨乱亚洲| 欧美国产乱子伦| 久久综合久久综合久久| 日韩欧美亚洲一区二区| 91麻豆精品国产91久久久资源速度| 91麻豆自制传媒国产之光| 国产成+人+日韩+欧美+亚洲 | 亚洲成av人在线观看| 亚洲免费视频中文字幕| 国产精品久久久久久一区二区三区| 欧美成人video| 精品久久久久久久久久久久久久久 | 精品在线观看免费| 久久国产福利国产秒拍| 蜜桃久久久久久| 天天影视色香欲综合网老头| 亚洲一卡二卡三卡四卡无卡久久 | 欧美日韩一卡二卡三卡| 欧美亚州韩日在线看免费版国语版| 91原创在线视频| 色婷婷久久久亚洲一区二区三区 | 亚洲制服丝袜在线| 亚洲成人午夜影院| 视频精品一区二区| 奇米精品一区二区三区在线观看 | 免费成人深夜小野草| 天堂久久一区二区三区| 亚洲成在线观看| 毛片不卡一区二区| 极品瑜伽女神91| 成人午夜视频免费看| 99国产欧美另类久久久精品| 91麻豆精品视频| 欧美美女直播网站| 久久综合资源网| 成人欧美一区二区三区白人| 亚洲综合一区二区三区| 日韩精品福利网| 国内成人免费视频| 99综合影院在线| 欧美日韩精品是欧美日韩精品| 91精品国模一区二区三区| 久久亚洲精精品中文字幕早川悠里| 国产精品天干天干在线综合| 亚洲黄色尤物视频| 麻豆精品视频在线| av在线不卡网| 欧美日本高清视频在线观看| 日韩欧美一级二级三级久久久| 日本一区二区在线不卡| 午夜伦欧美伦电影理论片| 国产成人亚洲精品狼色在线| 99视频有精品| 日韩三级视频在线观看| 国产精品福利一区二区三区| 日韩不卡免费视频| 成人性生交大片| 欧美久久久久久蜜桃| 日本一区二区三区久久久久久久久不 | 亚洲视频免费观看| 久久 天天综合| 精品视频一区二区不卡| 国产日韩欧美高清在线| 免费人成在线不卡| 91视频观看免费| www国产成人| 亚洲高清不卡在线观看| 丁香激情综合国产| 欧美日韩你懂的| 国产精品欧美经典| 久久91精品久久久久久秒播| 色哟哟欧美精品| 欧美激情中文不卡| 久久国产生活片100| 欧美日韩在线一区二区| 亚洲国产精品激情在线观看| 日本不卡中文字幕| 欧亚洲嫩模精品一区三区| 国产精品欧美精品| 国产盗摄一区二区三区| 日韩免费观看高清完整版在线观看| 亚洲精品国产精品乱码不99| a在线欧美一区| 欧美激情艳妇裸体舞| 精品无码三级在线观看视频 | 亚洲国产精品t66y| 国产制服丝袜一区| 欧美一区二区播放| 亚洲一区二区美女| 91豆麻精品91久久久久久| 国产精品成人免费在线| 高清在线成人网| 久久九九久久九九| 韩国av一区二区三区在线观看| 日韩精品一区在线| 久久超碰97人人做人人爱| 欧美一区二区三区影视| 日本不卡在线视频| 欧美va在线播放| 黄色日韩网站视频| 久久这里都是精品|