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

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

?? bio.h

?? SDL文件。SDL_ERROwenjian.....
?? 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  __cplusplus
extern "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_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	0x200

typedef 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);

const char * BIO_method_name(const BIO *b);

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美日韩精品一区二区三区四区| 亚洲国产sm捆绑调教视频| 欧美一区午夜视频在线观看 | 国产日韩精品一区| 久久久久久久久久美女| 亚洲欧洲av色图| 亚洲国产日韩在线一区模特 | 91麻豆精品91久久久久久清纯 | 激情综合色综合久久| 懂色av中文字幕一区二区三区| 在线免费观看日韩欧美| 久久精品视频一区| 亚洲综合色噜噜狠狠| 色悠悠亚洲一区二区| 欧美日韩国产综合久久| 欧美一区二区免费| 一级精品视频在线观看宜春院 | 欧美日韩二区三区| 国产喷白浆一区二区三区| 性做久久久久久久免费看| 国产成人免费视频网站| 日韩一区二区电影网| 尤物在线观看一区| 成人国产视频在线观看| 久久久久久久久久久久久夜| 青草国产精品久久久久久| 在线精品视频免费观看| 亚洲精品免费一二三区| 成人a级免费电影| 国产精品水嫩水嫩| 蜜臀av性久久久久蜜臀aⅴ | 国产成人免费xxxxxxxx| 日韩精品一区二区三区蜜臀| 免费美女久久99| 日韩欧美中文字幕制服| 日本v片在线高清不卡在线观看| 欧美日韩和欧美的一区二区| 香蕉影视欧美成人| 日韩欧美一级二级| 国产真实乱偷精品视频免| 精品国产乱码久久久久久闺蜜| 久久99精品国产.久久久久久| 国产麻豆精品theporn| 一本大道久久精品懂色aⅴ| 中文av一区特黄| www.欧美日韩| 日韩中文字幕区一区有砖一区| 欧美男同性恋视频网站| 国产剧情一区在线| 亚洲激情网站免费观看| 欧美一级夜夜爽| 国产成人av电影免费在线观看| 亚洲欧美日韩国产成人精品影院 | 91精品国产免费久久综合| 亚洲成人一区二区在线观看| 日韩一级黄色大片| 97se亚洲国产综合自在线| 亚洲午夜激情av| 国产精品九色蝌蚪自拍| 制服丝袜av成人在线看| 91在线国内视频| 国产美女一区二区三区| 日韩精品一卡二卡三卡四卡无卡| 国产精品麻豆视频| 久久综合九色综合欧美就去吻| 欧美精品在欧美一区二区少妇| 风间由美一区二区av101| 精品一区二区三区免费播放| 亚洲成人中文在线| 一区二区不卡在线视频 午夜欧美不卡在 | 欧美视频一区在线观看| 国产高清亚洲一区| 久久国内精品自在自线400部| 丝袜美腿成人在线| 有码一区二区三区| 亚洲一卡二卡三卡四卡| 亚洲男人的天堂网| 亚洲另类色综合网站| 亚洲精品欧美二区三区中文字幕| 亚洲男人的天堂在线aⅴ视频| 国产精品九色蝌蚪自拍| 亚洲激情在线播放| 亚洲自拍偷拍网站| 五月综合激情网| 蜜臀av性久久久久蜜臀aⅴ | 久久影院视频免费| 国产网站一区二区三区| 国产精品高潮久久久久无| 亚洲欧美色综合| 午夜av区久久| 国产麻豆日韩欧美久久| 一本色道亚洲精品aⅴ| 欧美亚男人的天堂| 久久人人超碰精品| 日韩理论片中文av| 免费人成黄页网站在线一区二区 | 欧美激情一区二区三区不卡| 最新不卡av在线| 久久国产尿小便嘘嘘| 国产乱码一区二区三区| 在线观看日韩毛片| 久久久不卡网国产精品二区| 亚洲丝袜制服诱惑| 国产一区二区三区在线看麻豆| 色婷婷国产精品综合在线观看| 精品成人在线观看| 亚洲在线中文字幕| 99re这里只有精品6| 精品入口麻豆88视频| 亚洲蜜臀av乱码久久精品| 看电影不卡的网站| 欧美精品一卡二卡| 亚洲一级二级在线| 成人爱爱电影网址| 久久久影视传媒| 激情综合五月天| 欧美一区二区免费观在线| 一区二区在线免费观看| 99久免费精品视频在线观看| 久久综合国产精品| 国产精品911| 国产午夜亚洲精品羞羞网站| 亚洲高清在线视频| 欧美午夜影院一区| 亚洲最快最全在线视频| 欧美图片一区二区三区| 一区二区日韩av| 欧洲激情一区二区| 亚洲国产一二三| 欧美一级爆毛片| 美女视频免费一区| 中日韩免费视频中文字幕| 北条麻妃国产九九精品视频| 亚洲天堂2014| 欧美一级片在线看| 成人激情黄色小说| 亚洲高清免费观看| 椎名由奈av一区二区三区| 91精品在线免费| 久久精品国产久精国产| 日韩你懂的电影在线观看| 狠狠色综合日日| 日韩欧美精品在线| 国产高清不卡一区| 欧美日韩亚洲综合| 蜜臀久久99精品久久久久久9 | 韩国成人在线视频| 国产欧美日韩在线看| 欧美最猛性xxxxx直播| 精品在线免费视频| 中文字幕日韩av资源站| 欧美xxxx老人做受| 日本道在线观看一区二区| 麻豆成人免费电影| 亚洲精品国产一区二区精华液 | 亚洲一区二区在线观看视频| 日韩一区国产二区欧美三区| 亚洲午夜电影网| 国产欧美日韩综合精品一区二区| 色综合久久久久综合体| 偷窥国产亚洲免费视频| 中文字幕一区二区三区不卡在线 | 久久精品一区二区| 综合久久久久久| 国产欧美精品在线观看| 精品福利一区二区三区免费视频| 久久亚洲综合色一区二区三区| 国产凹凸在线观看一区二区| 国产精品综合网| 国产盗摄一区二区三区| 国产乱人伦偷精品视频不卡 | 色老综合老女人久久久| 国产不卡一区视频| 成人影视亚洲图片在线| 国产精品一区二区免费不卡| 国产高清久久久| 99在线精品视频| caoporn国产精品| 91在线码无精品| 欧美日本不卡视频| 精品久久久久香蕉网| 久久精品人人爽人人爽| 亚洲天堂网中文字| 成人午夜在线播放| 国产网红主播福利一区二区| 久久久久久久久免费| 国产精品第四页| 亚洲午夜免费福利视频| 亚洲超碰97人人做人人爱| 秋霞成人午夜伦在线观看| 黑人巨大精品欧美黑白配亚洲 | 色噜噜偷拍精品综合在线| 欧美一a一片一级一片| 欧美日韩国产中文| 国产欧美中文在线| 人人爽香蕉精品| 91麻豆福利精品推荐| 久久影院电视剧免费观看| 一区二区三区在线视频观看58| 精久久久久久久久久久|