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

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

?? test-inet_tcp.c

?? 7號信令功能代碼,為開源代碼
?? C
?? 第 1 頁 / 共 5 頁
字號:
/***************************************************************************** @(#) test-inet_tcp.c,v LiS-2_16_18-8(1.1.4.1) 2004/01/12 23:33:18 ----------------------------------------------------------------------------- Copyright (c) 2001-2004 OpenSS7 Corporation <http://www.openss7.com/> Copyright (c) 1997-2000 Brian F. G. Bidulock <bidulock@dallas.net> All Rights Reserved. Unauthorized distribution or duplication is prohibited. This software and related documentation is protected by copyright and distributed under licenses restricting its use, copying, distribution and decompilation.  No part of this software or related documentation may be reproduced in any form by any means without the prior written authorization of the copyright holder, and licensors, if any. The recipient of this document, by its retention and use, warrants that the recipient will protect this information and keep it confidential, and will not disclose the information contained in this document without the written permission of its owner. The author reserves the right to revise this software and documentation for any reason, including but not limited to, conformity with standards promulgated by various agencies, utilization of advances in the state of the technical arts, or the reflection of changes in the design of any techniques, or procedures embodied, described, or referred to herein. The author is under no obligation to provide any feature listed herein. ----------------------------------------------------------------------------- U.S. GOVERNMENT RESTRICTED RIGHTS.  If you are licensing this Software on behalf of the U.S. Government ("Government"), the following provisions apply to you.  If the Software is supplied by the Department of Defense ("DoD"), it is classified as "Commercial Computer Software" under paragraph 252.227-7014 of the DoD Supplement to the Federal Acquisition Regulations ("DFARS") (or any successor regulations) and the Government is acquiring only the license rights granted herein (the license rights customarily provided to non-Government users).  If the Software is supplied to any unit or agency of the Government other than DoD, it is classified as "Restricted Computer Software" and the Government's rights in the Software are defined in paragraph 52.227-19 of the Federal Acquisition Regulations ("FAR") (or any success regulations) or, in the cases of NASA, in paragraph 18.52.227-86 of the NASA Supplement to the FAR (or any successor regulations). ----------------------------------------------------------------------------- Commercial licensing and support of this software is available from OpenSS7 Corporation at a fee.  See http://www.openss7.com/ ----------------------------------------------------------------------------- Last Modified 2004/01/12 23:33:18 by <bidulock@openss7.org> ----------------------------------------------------------------------------- test-inet_tcp.c,v Revision 1.1.4.1  2004/01/12 23:33:18  brian - Updated LiS-2.16.18 gcom release to autoconf. Revision 1.1.2.3  2004/01/07 11:34:53  brian - Updated copyright dates. Revision 1.1.2.2  2004/01/04 11:31:23  brian - Corrected xti include. Revision 1.1.2.1  2003/12/23 11:12:23  brian - Added INET streams test programs. *****************************************************************************/#ident "@(#) test-inet_tcp.c,v LiS-2_16_18-8(1.1.4.1) 2004/01/12 23:33:18"static char const ident[] =    "test-inet_tcp.c,v LiS-2_16_18-8(1.1.4.1) 2004/01/12 23:33:18";/* *  Simple test program for INET streams. */#include <stdlib.h>#include <unistd.h>#include <sys/ioctl.h>#include <sys/time.h>#include <sys/poll.h>#include <stdio.h>#include <sys/stat.h>#include <fcntl.h>#include <errno.h>#include <string.h>#include <sys/socket.h>#include <netinet/in.h>#include <arpa/inet.h>#ifdef _GNU_SOURCE#include <getopt.h>#endif#include <stropts.h>#define NEED_T_USCALAR_T#include <xti.h>#include <tihdr.h>#include <xti_inet.h>int verbose = 1;#define BUFSIZE 5*4096#define FFLUSH(stream)#define SHORT_WAIT 10#define NORMAL_WAIT 100#define LONG_WAIT 2000ulong seq[10] = { 0, };ulong tok[10] = { 0, };ulong tsn[10] = { 0, };ulong sid[10] = { 0, };union {	union T_primitives tpi;	char cbuf[BUFSIZE];} cmd;char dbuf[BUFSIZE];struct strbuf ctrl = { BUFSIZE, 0, cmd.cbuf };struct strbuf data = { BUFSIZE, 0, dbuf };struct strfdinsert fdi = {	{BUFSIZE, 0, cmd.cbuf},	{BUFSIZE, 0, dbuf},	0,	0,	0};struct timeval when;#define INCONCLUSIVE -2#define SUCCESS 0#define FAILURE -1const char *device = "/dev/tcp";int show = 1;int state;int fd1, fd2, fd3;struct sockaddr_in addr1, addr2, addr3;unsigned short port1 = 10000, port2 = 10001, port3 = 10002;/* *  Options *//* * data options  */struct {	struct t_opthdr tos_hdr __attribute__ ((packed));	t_scalar_t tos_val __attribute__ ((packed));	struct t_opthdr ttl_hdr __attribute__ ((packed));	t_scalar_t ttl_val __attribute__ ((packed));	struct t_opthdr drt_hdr __attribute__ ((packed));	t_scalar_t drt_val __attribute__ ((packed));	struct t_opthdr csm_hdr __attribute__ ((packed));	t_scalar_t csm_val __attribute__ ((packed));	struct t_opthdr ppi_hdr __attribute__ ((packed));	t_scalar_t ppi_val __attribute__ ((packed));	struct t_opthdr sid_hdr __attribute__ ((packed));	t_scalar_t sid_val __attribute__ ((packed));} opt_data = {	{	sizeof(struct t_opthdr) + sizeof(t_scalar_t), T_INET_IP, T_IP_TOS, T_SUCCESS}	, 0x1, {	sizeof(struct t_opthdr) + sizeof(t_scalar_t), T_INET_IP, T_IP_TTL, T_SUCCESS}	, 64, {	sizeof(struct t_opthdr) + sizeof(t_scalar_t), T_INET_IP, T_IP_DONTROUTE, T_SUCCESS}	, T_NO, {	sizeof(struct t_opthdr) + sizeof(t_scalar_t), T_INET_UDP, T_UDP_CHECKSUM, T_SUCCESS}	, T_NO, {	sizeof(struct t_opthdr) + sizeof(t_scalar_t), T_INET_SCTP, T_SCTP_PPI, T_SUCCESS}	, 10, {	sizeof(struct t_opthdr) + sizeof(t_scalar_t), T_INET_SCTP, T_SCTP_SID, T_SUCCESS}, 0};/* * receive data options  */typedef struct rdat_opt {	struct t_opthdr tos_hdr __attribute__ ((packed));	t_scalar_t tos_val __attribute__ ((packed));	struct t_opthdr ttl_hdr __attribute__ ((packed));	t_scalar_t ttl_val __attribute__ ((packed));	struct t_opthdr ppi_hdr __attribute__ ((packed));	t_scalar_t ppi_val __attribute__ ((packed));	struct t_opthdr sid_hdr __attribute__ ((packed));	t_scalar_t sid_val __attribute__ ((packed));	struct t_opthdr ssn_hdr __attribute__ ((packed));	t_scalar_t ssn_val __attribute__ ((packed));	struct t_opthdr tsn_hdr __attribute__ ((packed));	t_scalar_t tsn_val __attribute__ ((packed));} rdat_opt_t;/* * connect options  */struct {	struct t_opthdr tos_hdr __attribute__ ((packed));	t_scalar_t tos_val __attribute__ ((packed));	struct t_opthdr ttl_hdr __attribute__ ((packed));	t_scalar_t ttl_val __attribute__ ((packed));	struct t_opthdr drt_hdr __attribute__ ((packed));	t_scalar_t drt_val __attribute__ ((packed));	struct t_opthdr bca_hdr __attribute__ ((packed));	t_scalar_t bca_val __attribute__ ((packed));	struct t_opthdr reu_hdr __attribute__ ((packed));	t_scalar_t reu_val __attribute__ ((packed));	struct t_opthdr ist_hdr __attribute__ ((packed));	t_scalar_t ist_val __attribute__ ((packed));	struct t_opthdr ost_hdr __attribute__ ((packed));	t_scalar_t ost_val __attribute__ ((packed));} opt_conn = {	{	sizeof(struct t_opthdr) + sizeof(t_scalar_t), T_INET_IP, T_IP_TOS, T_SUCCESS}	, 0x1, {	sizeof(struct t_opthdr) + sizeof(t_scalar_t), T_INET_IP, T_IP_TTL, T_SUCCESS}	, 64, {	sizeof(struct t_opthdr) + sizeof(t_scalar_t), T_INET_IP, T_IP_DONTROUTE, T_SUCCESS}	, T_NO, {	sizeof(struct t_opthdr) + sizeof(t_scalar_t), T_INET_IP, T_IP_BROADCAST, T_SUCCESS}	, T_NO, {	sizeof(struct t_opthdr) + sizeof(t_scalar_t), T_INET_IP, T_IP_REUSEADDR, T_SUCCESS}	, T_NO, {	sizeof(struct t_opthdr) + sizeof(t_scalar_t), T_INET_SCTP, T_SCTP_ISTREAMS,		    T_SUCCESS}	, 1, {	sizeof(struct t_opthdr) + sizeof(t_scalar_t), T_INET_SCTP, T_SCTP_OSTREAMS,		    T_SUCCESS}, 1};/* * management options  */struct {	struct t_opthdr tos_hdr __attribute__ ((packed));	t_scalar_t tos_val __attribute__ ((packed));	struct t_opthdr ttl_hdr __attribute__ ((packed));	t_scalar_t ttl_val __attribute__ ((packed));	struct t_opthdr drt_hdr __attribute__ ((packed));	t_scalar_t drt_val __attribute__ ((packed));	struct t_opthdr bca_hdr __attribute__ ((packed));	t_scalar_t bca_val __attribute__ ((packed));	struct t_opthdr reu_hdr __attribute__ ((packed));	t_scalar_t reu_val __attribute__ ((packed));	struct t_opthdr ndl_hdr __attribute__ ((packed));	t_scalar_t ndl_val __attribute__ ((packed));	struct t_opthdr mxs_hdr __attribute__ ((packed));	t_scalar_t mxs_val __attribute__ ((packed));	struct t_opthdr kpa_hdr __attribute__ ((packed));	t_scalar_t kpa_val __attribute__ ((packed));	struct t_opthdr csm_hdr __attribute__ ((packed));	t_scalar_t csm_val __attribute__ ((packed));	struct t_opthdr nod_hdr __attribute__ ((packed));	t_scalar_t nod_val __attribute__ ((packed));	struct t_opthdr crk_hdr __attribute__ ((packed));	t_scalar_t crk_val __attribute__ ((packed));	struct t_opthdr ppi_hdr __attribute__ ((packed));	t_scalar_t ppi_val __attribute__ ((packed));	struct t_opthdr sid_hdr __attribute__ ((packed));	t_scalar_t sid_val __attribute__ ((packed));	struct t_opthdr rcv_hdr __attribute__ ((packed));	t_scalar_t rcv_val __attribute__ ((packed));	struct t_opthdr ckl_hdr __attribute__ ((packed));	t_scalar_t ckl_val __attribute__ ((packed));	struct t_opthdr skd_hdr __attribute__ ((packed));	t_scalar_t skd_val __attribute__ ((packed));	struct t_opthdr prt_hdr __attribute__ ((packed));	t_scalar_t prt_val __attribute__ ((packed));	struct t_opthdr art_hdr __attribute__ ((packed));	t_scalar_t art_val __attribute__ ((packed));	struct t_opthdr irt_hdr __attribute__ ((packed));	t_scalar_t irt_val __attribute__ ((packed));	struct t_opthdr hbi_hdr __attribute__ ((packed));	t_scalar_t hbi_val __attribute__ ((packed));	struct t_opthdr rin_hdr __attribute__ ((packed));	t_scalar_t rin_val __attribute__ ((packed));	struct t_opthdr rmn_hdr __attribute__ ((packed));	t_scalar_t rmn_val __attribute__ ((packed));	struct t_opthdr rmx_hdr __attribute__ ((packed));	t_scalar_t rmx_val __attribute__ ((packed));	struct t_opthdr ist_hdr __attribute__ ((packed));	t_scalar_t ist_val __attribute__ ((packed));	struct t_opthdr ost_hdr __attribute__ ((packed));	t_scalar_t ost_val __attribute__ ((packed));	struct t_opthdr cin_hdr __attribute__ ((packed));	t_scalar_t cin_val __attribute__ ((packed));	struct t_opthdr tin_hdr __attribute__ ((packed));	t_scalar_t tin_val __attribute__ ((packed));	struct t_opthdr mac_hdr __attribute__ ((packed));	t_scalar_t mac_val __attribute__ ((packed));	struct t_opthdr dbg_hdr __attribute__ ((packed));	t_scalar_t dbg_val __attribute__ ((packed));} opt_optm = {	{	sizeof(struct t_opthdr) + sizeof(t_scalar_t), T_INET_IP, T_IP_TOS, T_SUCCESS}	, 0x1, {	sizeof(struct t_opthdr) + sizeof(t_scalar_t), T_INET_IP, T_IP_TTL, T_SUCCESS}	, 64, {	sizeof(struct t_opthdr) + sizeof(t_scalar_t), T_INET_IP, T_IP_DONTROUTE, T_SUCCESS}	, T_NO, {	sizeof(struct t_opthdr) + sizeof(t_scalar_t), T_INET_IP, T_IP_BROADCAST, T_SUCCESS}	, T_NO, {	sizeof(struct t_opthdr) + sizeof(t_scalar_t), T_INET_IP, T_IP_REUSEADDR, T_SUCCESS}	, T_NO, {	sizeof(struct t_opthdr) + sizeof(t_scalar_t), T_INET_TCP, T_TCP_NODELAY, T_SUCCESS}	, T_NO, {	sizeof(struct t_opthdr) + sizeof(t_scalar_t), T_INET_TCP, T_TCP_MAXSEG, T_SUCCESS}	, 576, {	sizeof(struct t_opthdr) + sizeof(t_scalar_t), T_INET_TCP, T_TCP_KEEPALIVE, T_SUCCESS}	, T_NO, {	sizeof(struct t_opthdr) + sizeof(t_scalar_t), T_INET_UDP, T_UDP_CHECKSUM, T_SUCCESS}	, T_NO, {	sizeof(struct t_opthdr) + sizeof(t_scalar_t), T_INET_SCTP, T_SCTP_NODELAY, T_SUCCESS}	, T_YES, {	sizeof(struct t_opthdr) + sizeof(t_scalar_t), T_INET_SCTP, T_SCTP_CORK, T_SUCCESS}	, T_YES, {	sizeof(struct t_opthdr) + sizeof(t_scalar_t), T_INET_SCTP, T_SCTP_PPI, T_SUCCESS}	, 10, {	sizeof(struct t_opthdr) + sizeof(t_scalar_t), T_INET_SCTP, T_SCTP_SID, T_SUCCESS}	, 0, {	sizeof(struct t_opthdr) + sizeof(t_scalar_t), T_INET_SCTP, T_SCTP_RECVOPT, T_SUCCESS}	, T_NO, {	sizeof(struct t_opthdr) + sizeof(t_scalar_t), T_INET_SCTP, T_SCTP_COOKIE_LIFE,		    T_SUCCESS}	, 60000, {	sizeof(struct t_opthdr) + sizeof(t_scalar_t), T_INET_SCTP, T_SCTP_SACK_DELAY,		    T_SUCCESS}	, 0, {	sizeof(struct t_opthdr) + sizeof(t_scalar_t), T_INET_SCTP, T_SCTP_PATH_MAX_RETRANS,		    T_SUCCESS}	, 0, {	sizeof(struct t_opthdr) + sizeof(t_scalar_t), T_INET_SCTP, T_SCTP_ASSOC_MAX_RETRANS,		    T_SUCCESS}	, 12, {	sizeof(struct t_opthdr) + sizeof(t_scalar_t), T_INET_SCTP, T_SCTP_MAX_INIT_RETRIES,		    T_SUCCESS}	, 12, {	sizeof(struct t_opthdr) + sizeof(t_scalar_t), T_INET_SCTP, T_SCTP_HEARTBEAT_ITVL,		    T_SUCCESS}	, 200, {	sizeof(struct t_opthdr) + sizeof(t_scalar_t), T_INET_SCTP, T_SCTP_RTO_INITIAL,		    T_SUCCESS}	, 0, {	sizeof(struct t_opthdr) + sizeof(t_scalar_t), T_INET_SCTP, T_SCTP_RTO_MIN, T_SUCCESS}	, 0, {	sizeof(struct t_opthdr) + sizeof(t_scalar_t), T_INET_SCTP, T_SCTP_RTO_MAX, T_SUCCESS}	, 0, {	sizeof(struct t_opthdr) + sizeof(t_scalar_t), T_INET_SCTP, T_SCTP_OSTREAMS,		    T_SUCCESS}	, 1, {	sizeof(struct t_opthdr) + sizeof(t_scalar_t), T_INET_SCTP, T_SCTP_ISTREAMS,		    T_SUCCESS}	, 1, {	sizeof(struct t_opthdr) + sizeof(t_scalar_t), T_INET_SCTP, T_SCTP_COOKIE_INC,		    T_SUCCESS}	, 1000, {	sizeof(struct t_opthdr) + sizeof(t_scalar_t), T_INET_SCTP, T_SCTP_THROTTLE_ITVL,		    T_SUCCESS}	, 50, {	sizeof(struct t_opthdr) + sizeof(t_scalar_t), T_INET_SCTP, T_SCTP_MAC_TYPE,		    T_SUCCESS}	, SCTP_HMAC_NONE, {	sizeof(struct t_opthdr) + sizeof(t_scalar_t), T_INET_SCTP, T_SCTP_DEBUG, T_SUCCESS}, 0};char *err_string(ulong error){	switch (error) {	case TBADADDR:		return ("TBADADDR");	case TBADOPT:		return ("TBADOPT");	case TACCES:		return ("TACCES");	case TBADF:		return ("TBADF");	case TNOADDR:		return ("TNOADDR");	case TOUTSTATE:		return ("TOUTSTATE");	case TBADSEQ:		return ("TBADSEQ");	case TSYSERR:		return ("TSYSERR");	case TLOOK:		return ("TLOOK");	case TBADDATA:		return ("TBADDATA");	case TBUFOVFLW:		return ("TBUFOVFLW");	case TFLOW:		return ("TFLOW");	case TNODATA:		return ("TNODATA");	case TNODIS:		return ("TNODIS");	case TNOUDERR:		return ("TNOUDERR");	case TBADFLAG:		return ("TBADFLAG");	case TNOREL:		return ("TNOREL");	case TNOTSUPPORT:		return ("TNOTSUPPORT");	case TSTATECHNG:		return ("TSTATECHNG");	case TNOSTRUCTYPE:		return ("TNOSTRUCTTYPE");	case TBADNAME:		return ("TBADNAME");	case TBADQLEN:		return ("TBADQLEN");	case TADDRBUSY:		return ("TADDRBUSY");	case TINDOUT:		return ("TINDOUT");	case TPROVMISMATCH:		return ("TPROVMISMATCH");	case TRESQLEN:		return ("TRESQLEN");	case TRESADDR:		return ("TRESADDR");	case TQFULL:		return ("TQFULL");	case TPROTO:		return ("TPROTO");	default:		return ("(unknown)");	}}voidprint_error(ulong error){	printf("%s\n", err_string(error));}char *prim_string(ulong prim){	switch (prim) {	case T_CONN_REQ:		return ("T_CONN_REQ");	case T_CONN_RES:		return ("T_CONN_RES");	case T_DISCON_REQ:		return ("T_DISCON_REQ");	case T_DATA_REQ:		return ("T_DATA_REQ");	case T_EXDATA_REQ:		return ("T_EXDATA_REQ");	case T_OPTDATA_REQ:		return ("T_OPTDATA_REQ");	case T_INFO_REQ:		return ("T_INFO_REQ");	case T_BIND_REQ:		return ("T_BIND_REQ");	case T_UNBIND_REQ:		return ("T_UNBIND_REQ");	case T_UNITDATA_REQ:		return ("T_UNITDATA_REQ");	case T_OPTMGMT_REQ:		return ("T_OPTMGMT_REQ");

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
日本一区二区久久| 在线观看视频一区二区| 99视频一区二区| 欧美这里有精品| 日韩欧美色综合| 国产精品高潮呻吟| 天天综合色天天| 国产露脸91国语对白| 91欧美激情一区二区三区成人| 欧美日韩免费高清一区色橹橹| 精品国产成人系列| 亚洲精品国产第一综合99久久| 欧美aaaaaa午夜精品| 成人午夜电影小说| 欧美放荡的少妇| 国产视频911| 婷婷激情综合网| 国产精品一区二区久激情瑜伽| 在线观看三级视频欧美| 精品国产91乱码一区二区三区| 亚洲色图色小说| 另类调教123区| 91高清在线观看| 国产夜色精品一区二区av| 亚洲在线一区二区三区| 国产剧情一区在线| 7777精品伊人久久久大香线蕉经典版下载| 国产亚洲制服色| 日韩高清国产一区在线| 97精品久久久午夜一区二区三区 | 日本一区二区三区四区 | 欧美日韩一卡二卡| 国产精品网站在线播放| 免费日本视频一区| 欧美中文字幕一区二区三区亚洲| 久久久久久黄色| 午夜av一区二区三区| 成人av网址在线| 久久一区二区视频| 五月综合激情日本mⅴ| 成a人片国产精品| 国产亚洲欧美日韩日本| 日本不卡免费在线视频| 欧美三级电影精品| 亚洲欧美国产毛片在线| 国产乱子伦视频一区二区三区| 欧美乱熟臀69xxxxxx| 亚洲免费观看高清在线观看| 成人综合婷婷国产精品久久蜜臀 | 国产乱理伦片在线观看夜一区| 欧美日韩高清一区二区| 一区二区三区中文在线观看| 成人亚洲一区二区一| 精品av综合导航| 蜜臂av日日欢夜夜爽一区| 欧美亚洲国产怡红院影院| 国产精品国产三级国产| 成人性生交大片免费看中文| 欧美精品一区在线观看| 久久精品国产久精国产| 欧美一区午夜精品| 亚洲h动漫在线| 欧美在线色视频| 亚洲精品乱码久久久久久久久| 91在线观看成人| 亚洲欧洲日韩av| jlzzjlzz亚洲女人18| 国产日产欧产精品推荐色 | 国产精品情趣视频| 国产91精品一区二区| 国产欧美日韩视频一区二区| 黄色日韩三级电影| 久久久久99精品国产片| 国产一区二区视频在线播放| 久久亚洲一区二区三区四区| 国内不卡的二区三区中文字幕 | 国产在线精品免费| 久久婷婷久久一区二区三区| 激情丁香综合五月| 国产日韩av一区二区| 不卡av电影在线播放| 亚洲视频免费在线观看| 一本一道波多野结衣一区二区| 亚洲男人天堂av网| 欧美日韩国产一级片| 欧美bbbbb| 精品国产乱码久久久久久牛牛| 国产一区二区免费看| 国产女人水真多18毛片18精品视频| 国产成a人亚洲精| 一区在线观看视频| 欧美在线观看视频在线| 日韩国产欧美在线视频| 欧美精品一区二区在线观看| 成人精品鲁一区一区二区| 亚洲人精品一区| 欧美老年两性高潮| 久久成人18免费观看| 国产亚洲女人久久久久毛片| 色综合网站在线| 亚洲成人动漫精品| 精品欧美乱码久久久久久| 高清日韩电视剧大全免费| 亚洲图片激情小说| 91精品国产91久久久久久最新毛片| 久久精品免费看| 中文乱码免费一区二区| 欧美系列一区二区| 国产乱码字幕精品高清av| 国产精品国产三级国产aⅴ入口| 欧洲视频一区二区| 蜜桃视频在线观看一区| 国产精品久久久久久亚洲伦| 欧美性淫爽ww久久久久无| 久久99精品久久久久婷婷| 国产精品灌醉下药二区| 欧美精品一二三| 丁香天五香天堂综合| 亚洲午夜电影在线| 久久久精品国产免大香伊| 日本精品一级二级| 久久草av在线| 亚洲乱码国产乱码精品精小说 | 免费成人你懂的| 综合欧美一区二区三区| 欧美一区午夜视频在线观看| 99久久综合狠狠综合久久| 日韩精品免费视频人成| 亚洲欧洲www| 日韩久久久久久| 91福利精品第一导航| 黄一区二区三区| 香蕉久久夜色精品国产使用方法| 国产色产综合色产在线视频| 欧美日韩高清一区二区不卡 | 亚洲欧洲综合另类在线| 精品国产a毛片| 欧美日韩精品一区二区| 国产91在线|亚洲| 奇米影视一区二区三区| 一区二区欧美视频| 亚洲国产高清在线观看视频| 91精品国产欧美一区二区18| 91丝袜美女网| 国产二区国产一区在线观看| 日本不卡视频一二三区| 亚洲国产欧美日韩另类综合 | 成人动漫av在线| 九色|91porny| 午夜精品久久一牛影视| 亚洲乱码国产乱码精品精98午夜| 国产亚洲一区二区在线观看| 欧美一三区三区四区免费在线看| 日本二三区不卡| 成熟亚洲日本毛茸茸凸凹| 久久福利视频一区二区| 日韩精品乱码av一区二区| 亚洲午夜精品久久久久久久久| 国产精品久久看| 久久免费精品国产久精品久久久久| 欧美日韩黄色影视| 欧美在线观看一二区| 91麻豆免费看片| 成人激情小说乱人伦| 国产电影一区在线| 九九久久精品视频| 久久精品国产77777蜜臀| 午夜精品一区在线观看| 亚洲韩国一区二区三区| 一区二区三区高清| 亚洲欧美乱综合| 亚洲欧洲国产日韩| 亚洲天堂av一区| 亚洲图片激情小说| 中文字幕字幕中文在线中不卡视频| 国产精品全国免费观看高清| 中国色在线观看另类| 国产亚洲一区二区三区在线观看| 欧美大片国产精品| 日韩欧美视频在线| 精品福利av导航| 精品国产乱码久久久久久久久| 日韩精品一区二区三区四区| 欧美不卡一二三| 精品国产1区二区| 久久久久久久久久久久电影| 久久亚洲欧美国产精品乐播| 久久久精品tv| 国产精品嫩草99a| 国产精品美女久久久久aⅴ| 国产精品你懂的在线欣赏| 中文字幕亚洲精品在线观看| 亚洲欧美另类综合偷拍| 一区二区三区欧美久久| 亚洲国产精品一区二区久久 | 欧美成人aa大片| 精品理论电影在线| 久久精品欧美一区二区三区不卡| 国产亲近乱来精品视频| 国产精品成人网|