亚洲欧美第一页_禁久久精品乱码_粉嫩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一区二区三区免费野_久草精品视频
欧美一级国产精品| 日韩欧美一区二区不卡| 免费一级欧美片在线观看| 91影视在线播放| 久草在线在线精品观看| 日本中文在线一区| 亚洲1区2区3区视频| 欧美曰成人黄网| 色婷婷久久久亚洲一区二区三区 | 一本色道a无线码一区v| 成人av中文字幕| 91丝袜美腿高跟国产极品老师 | 婷婷开心激情综合| 日韩一区国产二区欧美三区| 91精品国产综合久久香蕉的特点| 91精品国产欧美一区二区成人| 制服丝袜中文字幕一区| 精品免费视频.| 久久久影视传媒| 欧美精彩视频一区二区三区| 国产精品久久午夜| 亚洲一区二区欧美激情| 欧美一级免费大片| 欧美成va人片在线观看| 欧美激情综合五月色丁香| 国产精品国产三级国产普通话99 | 亚洲色欲色欲www在线观看| 伊人一区二区三区| 青青草一区二区三区| 国产精品自拍三区| 在线一区二区三区| 日韩三级精品电影久久久| 久久九九全国免费| 一区二区久久久久| 国产一区激情在线| 91麻豆精品在线观看| 欧美一区二区不卡视频| 国产精品日韩成人| 天天综合日日夜夜精品| 国产成人精品一区二| 欧美在线不卡一区| 国产欧美日韩在线看| 亚洲午夜精品在线| 国产精品一品二品| 欧美日韩精品二区第二页| 亚洲精品在线观看视频| 亚洲国产一区二区三区青草影视 | 1000部国产精品成人观看| 亚洲成人av一区| 成人激情小说网站| 日韩一区二区电影| 亚洲精选视频在线| 成人做爰69片免费看网站| 欧美日韩精品免费观看视频| 亚洲欧美在线另类| 国产福利91精品一区| 4hu四虎永久在线影院成人| 亚洲人妖av一区二区| 国内一区二区视频| 日韩写真欧美这视频| 一区二区三区中文字幕电影| 成人午夜激情在线| 337p粉嫩大胆噜噜噜噜噜91av| 欧美揉bbbbb揉bbbbb| 国产精品的网站| 国产成人午夜视频| 欧美xxxxxxxx| 久久久久9999亚洲精品| 蜜桃av一区二区在线观看| 国产三级一区二区| 亚洲精品在线一区二区| 亚洲色图在线看| 国产一区二区美女| 日韩精品最新网址| 日本成人在线网站| 3atv一区二区三区| 日韩精品一区第一页| 欧美亚洲一区三区| 国产人久久人人人人爽| 久久99国产精品成人| 91精品国产一区二区三区蜜臀 | 国产一区二区三区视频在线播放| 欧美一卡在线观看| 久久成人精品无人区| 日韩精品一区二区三区视频| 日韩精品视频网站| 欧美一区二区成人6969| 久久国产精品区| 久久亚洲二区三区| 成人爽a毛片一区二区免费| 国产女人18毛片水真多成人如厕| 国产盗摄精品一区二区三区在线 | 亚洲老司机在线| 欧美体内she精视频| 偷拍日韩校园综合在线| 日韩一区二区视频| 国产激情视频一区二区在线观看| 欧美国产视频在线| 欧美综合欧美视频| 亚洲精品国产第一综合99久久| 欧美亚洲综合另类| 久久精品久久综合| 中文字幕乱码一区二区免费| 一本大道久久a久久综合婷婷| 亚洲福利一区二区三区| 欧美一级免费观看| 高清不卡一区二区在线| 亚洲精品国产第一综合99久久| 91精品国产综合久久福利| 国v精品久久久网| 视频在线观看国产精品| 久久在线观看免费| 欧美在线观看18| 国产成人av电影在线| 一个色妞综合视频在线观看| 精品国产乱码久久久久久免费| 成人午夜免费av| 热久久免费视频| 日韩美女久久久| 日韩精品一区二区三区中文精品| av资源网一区| 久久综合视频网| 在线免费观看日本欧美| 国产精品一二三四五| 亚洲 欧美综合在线网络| 欧美激情一区二区三区| 4438成人网| 亚洲成国产人片在线观看| 中文字幕第一区综合| 9191成人精品久久| 99精品视频在线免费观看| 久久成人麻豆午夜电影| 亚洲丰满少妇videoshd| 1000精品久久久久久久久| 久久久精品国产99久久精品芒果| 91成人在线观看喷潮| 成人精品高清在线| 国产精品一区久久久久| 蜜桃在线一区二区三区| 午夜视黄欧洲亚洲| 亚洲欧美视频在线观看视频| 国产欧美日韩在线视频| 久久久久亚洲综合| 日韩欧美卡一卡二| 欧美妇女性影城| 欧美日本一道本在线视频| 亚洲国产综合人成综合网站| 亚洲日本成人在线观看| 国产精品久线在线观看| 中文字幕第一区第二区| 国产欧美日韩亚州综合| 久久久久久久久久久久电影| 欧美二区乱c少妇| 51午夜精品国产| 在线播放国产精品二区一二区四区 | 中文字幕字幕中文在线中不卡视频| 国产午夜一区二区三区| 久久综合九色综合97婷婷| 欧美大片免费久久精品三p| 欧美一级淫片007| 日韩丝袜情趣美女图片| 日韩精品一区二区三区蜜臀| 精品欧美黑人一区二区三区| 久久免费偷拍视频| 久久久美女艺术照精彩视频福利播放| 欧美成人福利视频| 久久嫩草精品久久久久| 99视频热这里只有精品免费| 不卡一区二区三区四区| 99re66热这里只有精品3直播 | 国产精品国产三级国产aⅴ中文| 久久久精品国产免费观看同学| 国产精品人妖ts系列视频| 国产精品色眯眯| 亚洲一线二线三线久久久| 亚洲国产精品尤物yw在线观看| 丝袜美腿亚洲色图| 激情成人午夜视频| 国产精品灌醉下药二区| 亚洲一区在线视频观看| 老司机精品视频导航| 国产成人精品综合在线观看| 色综合中文字幕| 欧美一区二区福利视频| 国产精品久久久久久一区二区三区| 中文字幕在线观看一区二区| 亚洲国产成人porn| 精品一区二区三区免费播放| gogogo免费视频观看亚洲一| 91九色02白丝porn| 精品日产卡一卡二卡麻豆| 色欧美88888久久久久久影院| 91精品免费在线观看| 国产亚洲精久久久久久| 亚洲一区二区三区精品在线| 国产成人午夜99999| 欧美日韩在线电影| 久久久久久久久伊人| 亚洲综合免费观看高清完整版| 久久99国产精品麻豆|