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

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

?? ftam.h

?? ftam等標準協議服務器和客戶端的源代碼。
?? H
?? 第 1 頁 / 共 3 頁
字號:
/* ftam.h - include file for FTAM users (FS-USER) *//*  * $Header: /f/iso/h/RCS/ftam.h,v 5.0 88/07/21 14:38:56 mrose Rel $ * * * $Log$ *//* *				  NOTICE * *    Acquisition, use, and distribution of this module and related *    materials are subject to the restrictions of a license agreement. *    Consult the Preface in the User's Manual for the full terms of *    this agreement. * */#ifndef	_FTAM_#define	_FTAM_#include "psap2.h"/*  */				/* service levels */#define	FLEVEL_RELIABLE	0	/*   reliable */#define	FLEVEL_USER	1	/*   user-correctable */#define	MY_FLEVEL	FLEVEL_RELIABLE				/* service classes */#define	FCLASS_TRANSFER	0	/*   transfer-class */#define	FCLASS_ACCESS	1	/*   access-class */#define	FCLASS_MANAGE	2	/*   management-class */#define	FCLASS_TM	3	/*   transfer-and-management-class */#define	FCLASS_UNCONS	4	/*   unconstrained-class */				/* functional units */#define	FUNIT_READ	0x01	/*   read */#define	FUNIT_WRITE	0x02	/*   write */#define	FUNIT_ACCESS	0x04	/*   file-access */#define	FUNIT_LIMITED	0x08	/*   limited-file-managment */#define	FUNIT_ENHANCED	0x10	/*   enhanced-file-management */#define	FUNIT_GROUPING	0x20	/*   grouping */#define	FUNIT_RECOVERY	0x40	/*   recovery */#define	FUNIT_RESTART	0x80	/*   restart-data-transfer */#define	MY_FUNIT	(FUNIT_READ | FUNIT_WRITE | FUNIT_ACCESS \				| FUNIT_LIMITED | FUNIT_ENHANCED \				| FUNIT_GROUPING)				/* attribute groups */#define	FATTR_STORAGE	0x01	/*   storage */#define	FATTR_SECURITY	0x02	/*   security */#define	FATTR_PRIVATE	0x04	/*   private */#define	MY_FATTR	(FATTR_STORAGE | FATTR_SECURITY)				/* state results */#define	FSTATE_SUCCESS	0	/*   success */#define	FSTATE_FAILURE	1	/*   failure */				/* action result */#define	FACTION_SUCCESS	0	/*   success */#define	FACTION_TRANS	1	/*   transient-error */#define	FACTION_PERM	2	/*   permanent-error *//*  */struct FTAMcontent {    OID	    fc_dtn;		/* document type name */				/* associated presentation context info */    int	    fc_id;		/*   identifier */    int	    fc_result;		/*   status */};        struct FTAMcontentlist {	/* list of FTAM contents */    int	    fc_ncontent;	/* number of contents */#define	NFCONT	(NPCTX - 2)	/* not-so-arbitrary */    struct FTAMcontent fc_contents[NFCONT];};/*  */struct FTAMdiagnostic {    int	    ftd_type;		/* diagnostic-type */#define	DIAG_INFORM	0	/*   informative */#define	DIAG_TRANS	1	/*   transient */#define	DIAG_PERM	2	/*   permanent */    int	    ftd_identifier;	/* error-identifier */#define	FS_CODE2OFF(c)	((c) % 1000)#define	FS_GEN_BASE	0	/* General FTAM diagnostics */#define	FS_GEN_NOREASON	0	/* No reason */#define	FS_GEN_RESPONDER 1	/* Responder error (unspecific) */#define	FS_GEN_SHUTDOWN	2	/* System shutdown */#define	FS_GEN_MGMT	3	/* FTAM management problem (unspecific) */#define	FS_GEN_MGMTACCT	4	/* FTAM management - bad account */#define	FS_GEN_MGMTPASS	5	/* FTAM management - security not passed */#define	FS_GEN_DELAY	6	/* Delay may be encountered */#define	FS_GEN_INITIATOR 7	/* Initiator error (unspecific) */#define	FS_GEN_SUBSEQ	8	/* Subsequent error */#define	FS_GEN_WAITING	9	/* Indications waiting (unofficial) */#define	FS_PRO_BASE	1000	/* Protocol and supporting service related				   diagnostics */#define	FS_PRO_CONFLICT	1000	/* Conflicting parameter values */#define	FS_PRO_UNSUPORT	1001	/* Unsupported parameter values */#define	FS_PRO_MANDATORY 1002	/* Mandatory parameter not set */#define	FS_PRO_UNPARAM	1003	/* Unsupported parameter */#define	FS_PRO_DUPARAM	1004	/* Duplicated parameter */#define	FS_PRO_ILLEGAL	1005	/* Illegal parameter type */#define	FS_PRO_UNTYPE	1006	/* Unsupported parameter type */#define	FS_PRO_ERR	1007	/* FTAM protocol error (unspecific) */#define	FS_PRO_ERRPROC	1008	/* FTAM protocol error - procedure error */#define	FS_PRO_ERRFUNIT	1009	/* FTAM protocol error - functional unit				   error */#define	FS_PRO_ERRMSG	1010	/* FTAM protocol error - message error */#define	FS_PRO_LOWFAIL	1011	/* Lower layer failure */#define	FS_PRO_LOWADDR	1012	/* Lower layer addressing error */#define	FS_PRO_TIMEOUT	1013	/* Timeout */#define	FS_PRO_SHUTDOWN	1014	/* System shutdown */#define	FS_PRO_GROUPING	1015	/* Illegal grouping sequence */#define	FS_PRO_THRESH	1016	/* Grouping threshold violation */#define	FS_ACS_BASE	2000	/* Association related diagnostics */#define	FS_ACS_USER	2000	/* Association with user not allowed */#define	FS_ACS_LEVEL	2001	/* Unsupported service level */#define	FS_ACS_CLASS	2002	/* Unsupported service class */#define	FS_ACS_FUNIT	2003	/* Unsupported functional unit */#define	FS_ACS_GRP	2004	/* Attribute group error (unspecific) */#define	FS_ACS_GRPSUP	2005	/* Attribute group not supported */#define	FS_ACS_GRPALL	2006	/* Attribute group not allowed */#define	FS_ACS_ACCT	2007	/* Bad account */#define	FS_ACS_MGMT	2008	/* Association management (unspecific) */#define	FS_ACS_MGMTADDR	2009	/* Association management - bad address */#define	FS_ACS_MGMTACCT	2010	/* Association management - bad account */#define	FS_ACS_CKPLARGE	2011	/* Checkpoint window error - too large */#define	FS_ACS_CKPSMALL	2012	/* Checkpoint window error - too small */#define	FS_ACS_CKPERR	2013	/* Checkpoint window error - unsupported */#define	FS_ACS_QOS	2014	/* Communications QOS not supported */#define	FS_ACS_IDENTITY	2015	/* Initiator identity unacceptable */#define	FS_ACS_CONTEXT	2016	/* Context management refused */#define	FS_ACS_ROLLBACK	2017	/* Rollback not available */#define	FS_ACS_CNTRESP	2018	/* Contents type list cut by responder */#define	FS_ACS_CNTPSAP	2019	/* Contents type list cut by Presentation				   service */#define	FS_ACS_PASSWORD	2020	/* Invalid filestore password */#define	FS_SEL_BASE	3000	/* Selection related diagnostics */#define	FS_SEL_FILENAME	3000	/* Filename not found */#define	FS_SEL_MATCHED	3001	/* Selection attributes not matched */#define	FS_SEL_INITIAL	3002	/* Initial attributes not possible */#define	FS_SEL_ATTRNAME	3003	/* Bad attribute name */#define	FS_SEL_NOEXIST	3004	/* Non-existent file */#define	FS_SEL_EXISTS	3005	/* File already exists */#define	FS_SEL_CREATE	3006	/* File can not be created */#define	FS_SEL_DELETE	3007	/* File can not be deleted */#define	FS_SEL_CONAVAIL	3008	/* Concurrency control not available */#define	FS_SEL_CONSUPRT	3009	/* Concurrency control not supported */#define	FS_SEL_CONPOSS	3010	/* Concurrency control not possible */#define	FS_SEL_RESTRICT	3011	/* More restrictive lock */#define	FS_SEL_BUSY	3012	/* File busy */#define	FS_SEL_AVAIL	3013	/* File not available */#define	FS_SEL_ACCAVAIL	3014	/* Access control not available */#define	FS_SEL_ACCSUPRT	3015	/* Access control not supported */#define	FS_SEL_ACCINCON	3016	/* Access control inconsistent */#define	FS_SEL_TRUNC	3017	/* Filename truncated */#define	FS_SEL_ALTER	3018	/* Initial attributes altered */#define	FS_SEL_ACCOUNT	3019	/* Bad account */#define	FS_SEL_CREEXIST	3020	/* Create override selected existing file */#define	FS_SEL_CREOLD	3021	/* Create override deleted and recreated file				   with old attributes */#define	FS_SEL_CRENEW	3022	/* Create override deleted and recreated file				   with new attributes */#define	FS_SEL_CRELOSE	3023	/* Create override - not possible */#define	FS_SEL_AMBIG	3024	/* Ambiguous file specification */#define	FS_SEL_CREPASS	3025	/* Invalid create password */#define	FS_SEL_DELPASS	3026	/* Invalid delete password on override */#define	FS_SEL_ATRVALUE	3027	/* Bad attribute value */#define	FS_MGT_BASE	4000	/* File management related diagnostics */#define	FS_MGT_EXIST	4000	/* Attribute non-existant */#define	FS_MGT_READ	4001	/* Attribute cannot be read */#define	FS_MGT_CHANGE	4002	/* Attribute cannot be changed */#define	FS_MGT_SUPPORT	4003	/* Attribute not supported */#define	FS_MGT_NAME	4004	/* Bad attribute name */#define	FS_MGT_VALUE	4005	/* Bad attribute value */#define	FS_ACC_BASE	5000	/* Access related diagnostics */#define	FS_ACC_FADU	5000	/* Bad FADU (unspecific) */#define	FS_ACC_FADUSIZE	5001	/* Bad FADU - size error */#define	FS_ACC_FADUTYPE	5002	/* Bad FADU - type error */#define	FS_ACC_FADUSPEC	5003	/* Bad FADU - poorly specified */#define	FS_ACC_FADULOC	5004	/* Bad FADU - bad location */#define	FS_ACC_EXIST	5005	/* FADU does not exist */#define	FS_ACC_AVL	5006	/* FADU not available (unspecific) */#define	FS_ACC_AVLREAD	5007	/* FADU not available for reading */#define	FS_ACC_AVLWRITE	5008	/* FADU not available for writing */#define	FS_ACC_AVLLOC	5009	/* FADU not available for location */#define	FS_ACC_AVLERASE	5010	/* FADU not available for erasure */#define	FS_ACC_INSERT	5011	/* FADU cannot be inserted */#define	FS_ACC_REPLACE	5012	/* FADU cannot be replaced */#define	FS_ACC_LOCATE	5013	/* FADU cannot be located */#define	FS_ACC_ELEMENT	5014	/* Bad data element type */#define	FS_ACC_OPAVAIL	5015	/* Operation not available */#define	FS_ACC_OPSUPRT	5016	/* Operation not supported */#define	FS_ACC_OPCONS	5017	/* Operation inconsistent */#define	FS_ACC_CONAVAIL	5018	/* Concurrency control not available */#define	FS_ACC_CONSUPRT	5019	/* Concurrency control not supported */#define	FS_ACC_CONINCON	5020	/* Concurrency control inconsistent */#define	FS_ACC_MODAVAIL	5021	/* Processing mode not available */#define	FS_ACC_MODSUPRT	5022	/* Processing mode not supported */#define	FS_ACC_MODINCON	5023	/* Processing mode inconsistent */#define	FS_ACC_CTXAVAIL	5024	/* Access context not available */#define	FS_ACC_CTXSUPRT	5025	/* Access context not supported */#define	FS_ACC_WRITE	5026	/* Bad write (unspecific) */#define	FS_ACC_READ	5027	/* Bad read (unspecific) */#define	FS_ACC_LCL	5028	/* Local failure (unspecific) */#define	FS_ACC_LCLSPACE	5029	/* Local failure - file space exhausted */#define	FS_ACC_LCLDATA	5030	/* Local failure - data corrupted */#define	FS_ACC_LCLDEV	5031	/* Local failure - device failure */#define	FS_ACC_FFSEXCEED 5032	/* Future filesize exceeded */#define	FS_ACC_FFSINCRES 5034	/* Future filesize increased */#define	FS_ACC_FUNIT	5035	/* Functional unit invalid in processing				   mode */#define	FS_ACC_TYPINCON	5036	/* Contents type inconsistent */#define	FS_ACC_TYPSIMPL	5037	/* Contents type simplified */#define	FS_RVY_BASE	6000	/* Recovery related diagnostics */#define	FS_RVY_CKP	6000	/* Bad checkpoint (unspecific) */#define	FS_RVY_UNIQUE	6001	/* Activity not unique */#define	FS_RVY_WINDOW	6002	/* Checkpoint outside window */#define	FS_RVY_EXISTS	6003	/* Activity no longer exists */#define	FS_RVY_RECOG	6004	/* Activity not recognized */#define	FS_RVY_NODOCKET	6005	/* No docket */#define	FS_RVY_CODOCKET	6006	/* Corrupt docket */#define	FS_RVY_WAITING	6007	/* File waiting restart */#define	FS_RVY_RECOVERY	6008	/* Bad recovery point */#define	FS_RVY_NOPOINT	6009	/* Non-existent recovery point */#define	FS_RVY_MODAVAIL	6010	/* Recovery mode not available */#define	FS_RVY_MODINCON	6011	/* Recovery mode inconsistent */#define	FS_RVY_MODREDUCE 6012	/* Recovery mode reduced */#define	FS_RVY_ACCAVAIL	6013	/* Access control not available */#define	FS_RVY_ACCSUPRT	6014	/* Access control not supported */#define	FS_RVY_ACCINCON	6015	/* Access control inconsistent */#define	FS_RVY_TYPINCON	6016	/* Contents type inconsistent */#define	FS_RVY_TYPSIMPL	6017	/* Contents type simplified */    int	    ftd_observer;	/* error-observer */    int	    ftd_source;		/* error-source */#define	EREF_NONE	0	/*   no-categorizaton-possible */#define	EREF_IFSU	1	/*   initiating-file-service-user */#define	EREF_IFPM	2	/*   initiating-file-protocol-machine */#define	EREF_SERV	3	/*   service-supporting-the-file-protocol-machine */#define	EREF_RFPM	4	/*   responding-file-protocol-machine */#define	EREF_RFSU	5	/*   responding-file-service-user */    int	    ftd_delay;		/* suggested-delay */#define	DIAG_NODELAY	(-1)				/* further-details */#define	FTD_SIZE	512	/* should be unlimited... */    int	    ftd_cc;		/*   length */    char    ftd_data[FTD_SIZE];	/*   data */};/*  */struct FTAMcharging {		/* FTAM charging */    int	    fc_ncharge;		/* number of charges */#define	NFCHRG	5		/* arbitrary */    struct fc_charge {	char   *fc_resource;	/* resource-identifier */	char   *fc_unit;	/* charging-unit */	int	fc_value;	/* charging-value */    }	    fc_charges[NFCHRG];};/*  */struct FTAMpasswords {    char   *fp_read;		/* read-password */    int	    fp_readlen;    char   *fp_insert;		/* insert-password */    int	    fp_insertlen;    char   *fp_replace;		/* replace-password */    int	    fp_replacelen;    char   *fp_erase;		/* erase-password */    int	    fp_eraselen;    char   *fp_extend;		/* extend-password */    int	    fp_extendlen;    char   *fp_readattr;	/* read-attribute-password */    int	    fp_readattrlen;    char   *fp_chngattr;	/* change-attribute-password */    int	    fp_chngattrlen;    char   *fp_delete;		/* delete-password */    int	    fp_deletelen;};#define	FPFREE(fp) \{ \    register struct FTAMpasswords *FP = (fp); \ \    if (FP -> fp_read) \	free (FP -> fp_read), FP -> fp_read = NULL; \    if (FP -> fp_insert) \	free (FP -> fp_insert), FP -> fp_insert = NULL; \    if (FP -> fp_replace) \	free (FP -> fp_replace), FP -> fp_replace = NULL; \    if (FP -> fp_erase) \	free (FP -> fp_erase), FP -> fp_erase = NULL; \    if (FP -> fp_extend) \	free (FP -> fp_extend), FP -> fp_extend = NULL; \    if (FP -> fp_readattr) \	free (FP -> fp_readattr), FP -> fp_readattr = NULL; \    if (FP -> fp_chngattr) \	free (FP -> fp_chngattr), FP -> fp_chngattr = NULL; \    if (FP -> fp_delete) \	free (FP -> fp_delete), FP -> fp_delete = NULL; \}/*  */struct FTAMacelement {    int	    fe_actions;		/* action-list */#define	FA_PERM_READ		0x0001	/* read */#define	FA_PERM_INSERT		0x0002	/* insert */#define	FA_PERM_REPLACE		0x0004	/* replace */#define	FA_PERM_EXTEND		0x0008	/* extend */#define	FA_PERM_ERASE		0x0010	/* erase */#define	FA_PERM_READATTR	0x0020	/* read-attribute */#define	FA_PERM_CHNGATTR	0x0040	/* change-attribute */#define	FA_PERM_DELETE		0x0080	/* delete-file */    char   *fe_identity;	/* user-identity */    struct FTAMpasswords fe_passwords;    char   *fe_aet;		/* actually, could be EXTERNAL,				   but we support only GraphicString for now */    struct FTAMacelement *fe_next;};#define	FEFREE(fe) \{ \    register struct FTAMacelement  *FE, \				   *FN; \ \    for (FE = (fe); FE; FE = FN) { \	FN = FE -> fe_next; \ \	if (FE -> fe_identity) \	    free (FE -> fe_identity), FE -> fe_identity = NULL; \ \	FPFREE (&FE -> fe_passwords); \ \	if (FE -> fe_aet) \	    free (FE -> fe_aet), FE -> fe_aet = NULL; \ \	FE -> fe_next = NULL; \ \	free ((char *) FE); \    } \}struct FTAMaclist {    struct FTAMacelement *fl_insert;    struct FTAMacelement *fl_delete;

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美高清www午色夜在线视频| 91视频精品在这里| 亚洲成人免费视频| 一色屋精品亚洲香蕉网站| 国产欧美综合在线观看第十页| 久久这里只有精品视频网| 国产亚洲一区字幕| 国产欧美日韩视频在线观看| 欧美国产欧美亚州国产日韩mv天天看完整 | 福利电影一区二区三区| 成人性生交大合| 91碰在线视频| 欧美精品丝袜久久久中文字幕| 欧美一级黄色大片| 久久久亚洲午夜电影| 中文字幕一区二区不卡| 一区二区三区在线播放| 三级欧美在线一区| 国产老女人精品毛片久久| www.一区二区| 欧美二区乱c少妇| 久久久久国产精品人| 亚洲你懂的在线视频| 日韩精品电影在线| 国产超碰在线一区| 欧美婷婷六月丁香综合色| 日韩美一区二区三区| 中文字幕亚洲综合久久菠萝蜜| 一区二区激情小说| 蓝色福利精品导航| 色综合天天综合网天天看片| 91精品蜜臀在线一区尤物| 日本一区二区动态图| 亚洲国产日韩一区二区| 国产一区二区三区视频在线播放| 波波电影院一区二区三区| 51精品国自产在线| 中文字幕亚洲不卡| 精品一区二区在线视频| 99re6这里只有精品视频在线观看| 欧美一区二区福利在线| 亚洲视频一二区| 国产精品91一区二区| 欧美日本一区二区| 亚洲天天做日日做天天谢日日欢| 天天色天天操综合| 在线这里只有精品| 国产欧美综合色| 激情五月激情综合网| 欧美日韩美女一区二区| 亚洲人精品一区| 国产成人精品www牛牛影视| 欧美剧在线免费观看网站| 国产精品美女久久久久av爽李琼| 蜜臀久久久久久久| 欧美日韩在线不卡| 亚洲人xxxx| 91小视频在线免费看| 欧美激情综合在线| 国产一区二区精品在线观看| 7777精品伊人久久久大香线蕉完整版 | 欧美v国产在线一区二区三区| 亚洲视频一二三区| gogogo免费视频观看亚洲一| 国产欧美一区二区精品久导航 | 2欧美一区二区三区在线观看视频| 午夜天堂影视香蕉久久| 欧美日韩一区 二区 三区 久久精品| 成人免费在线播放视频| jizz一区二区| 亚洲欧美综合色| 99久久精品99国产精品| 1000精品久久久久久久久| 成人av在线看| 日韩毛片精品高清免费| 91美女片黄在线观看91美女| 亚洲视频在线观看三级| 色香色香欲天天天影视综合网| 中文字幕在线一区| 色婷婷综合视频在线观看| 国产精品成人在线观看| 91猫先生在线| 亚洲高清免费视频| 欧美一二三区精品| 国产成人精品午夜视频免费| 亚洲国产高清不卡| 色就色 综合激情| 亚洲gay无套男同| 欧美tickling网站挠脚心| 精品中文字幕一区二区小辣椒| 久久麻豆一区二区| eeuss鲁片一区二区三区在线看| 亚洲女人的天堂| 欧美日韩在线播放一区| 蜜乳av一区二区| 中文字幕欧美三区| 欧美色倩网站大全免费| 毛片基地黄久久久久久天堂| 国产拍揄自揄精品视频麻豆| 色偷偷88欧美精品久久久 | 日韩欧美一区在线观看| 国产一区二区不卡在线| 亚洲男人的天堂一区二区| 91精品久久久久久久99蜜桃| 国产mv日韩mv欧美| 亚洲最色的网站| 精品sm在线观看| 日本久久一区二区| 国产一区二区三区免费观看| 亚洲女与黑人做爰| 精品av久久707| 一本到高清视频免费精品| 日本成人在线不卡视频| 国产精品女人毛片| 91麻豆精品久久久久蜜臀| 国产精品一区二区在线播放| 亚洲国产综合色| 久久久噜噜噜久久人人看 | 免费观看一级特黄欧美大片| 国产精品色婷婷久久58| 欧美美女喷水视频| 99re视频这里只有精品| 免播放器亚洲一区| 亚洲一区在线观看视频| 国产精品二三区| 亚洲精品一区二区三区蜜桃下载| 欧日韩精品视频| 成人免费av网站| 久久av中文字幕片| 日本中文字幕一区二区视频| 亚洲女爱视频在线| 中文字幕一区二区日韩精品绯色| 精品国产污网站| 91精品欧美综合在线观看最新| 一本一道综合狠狠老| 成人精品免费网站| 国产又黄又大久久| 久久精品免费看| 日韩国产欧美在线观看| 日本aⅴ精品一区二区三区| 一区二区三区日本| 亚洲精品成人a在线观看| 国产精品久久久久久久久免费丝袜 | 精品成人佐山爱一区二区| 欧美精品在线视频| 日本韩国一区二区| 欧亚洲嫩模精品一区三区| 色国产精品一区在线观看| 99久久精品国产麻豆演员表| 成人午夜电影久久影院| 国产成人精品影视| 国产精品一二三在| 成人综合在线网站| 成人免费视频一区二区| 成人午夜私人影院| 成人高清免费在线播放| av不卡免费电影| 色哟哟亚洲精品| 欧美三级欧美一级| 91麻豆精品91久久久久同性| 欧美一区三区四区| 精品噜噜噜噜久久久久久久久试看 | 天天影视涩香欲综合网| 日本中文在线一区| 麻豆国产一区二区| 国产精品一级黄| 91麻豆视频网站| 欧美性猛交xxxx黑人交| 欧美放荡的少妇| 久久久午夜电影| 亚洲久草在线视频| 午夜久久久久久| 国产精品一区二区久久不卡| 99久久久国产精品| 欧美日韩一区二区三区不卡 | 国产一区二区三区在线观看免费视频 | 一区二区三区自拍| 日韩二区三区在线观看| 国产不卡视频在线观看| 色一情一伦一子一伦一区| www国产亚洲精品久久麻豆| 亚洲欧洲无码一区二区三区| 午夜不卡在线视频| 高清视频一区二区| 欧美日韩午夜在线视频| 国产色产综合产在线视频| 亚洲精品乱码久久久久久久久| 日本网站在线观看一区二区三区| 高清不卡一区二区在线| 欧美影院精品一区| 国产亚洲成年网址在线观看| 一区二区三区欧美视频| 国产一区二区三区久久久| 欧美亚男人的天堂| 久久色中文字幕| 日韩高清一区在线| 99精品在线观看视频| 精品成人一区二区三区四区| 亚洲一区二区三区在线播放| 国产精品99久久久|