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

? 歡迎來(lái)到蟲(chóng)蟲(chóng)下載站! | ?? 資源下載 ?? 資源專(zhuān)輯 ?? 關(guān)于我們
? 蟲(chóng)蟲(chóng)下載站

?? answer.c

?? 使用TAP的蜂窩型GSM手機(jī)短消息服務(wù)中心
?? C
字號(hào):
/* -------------------------------------------------------------------- *//* SMS Client, send messages to mobile phones and pagers		*//*									*//* answer.c								*//*									*//*  Copyright (C) 1998 Paul Andrew      				*//*									*//*  This library is free software; you can redistribute it and/or	*//*  modify it under the terms of the GNU Library General Public		*//*  License as published by the Free Software Foundation; either	*//*  version 2 of the License, or (at your option) any later version.	*//*									*//*  This library is distributed in the hope that it will be useful,	*//*  but WITHOUT ANY WARRANTY; without even the implied warranty of	*//*  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU	*//*  Library General Public License for more details.			*//*									*//*  You should have received a copy of the GNU Library General Public	*//*  License along with this library; if not, write to the Free		*//*  Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.	*//*									*//*  You can contact the author at this e-mail address:			*//*									*//*  paul.andrew@optimation.co.nz        				*//*									*//* -------------------------------------------------------------------- *//* $Id$   -------------------------------------------------------------------- */#include <stdio.h>#include <strings.h>#include "common.h"#include "logfile.h"#include "driver.h"#include "expect.h"#include "sms_error.h"#include "sms_resource.h"/* -------------------------------------------------------------------- *//* -------------------------------------------------------------------- */static struct answer_env{	DRIVER_DEFAULT_ENV def;  	/* Place any extended driver	*/ 	/* variables here 		*/	char *szPassword;} driver_env;/* -------------------------------------------------------------------- */static 	RESOURCE resource_list[] = 	{		{ RESOURCE_STRING,  "SMS_comms_params", 	0, 1, NULL, 0,  "8N1",      0, 	  &(driver_env.def.comms_params)  	},		{ RESOURCE_STRING,  "SMS_centre_number", 	0, 1, NULL, 0,  NULL,       0, 	  &(driver_env.def.centre_number)  	},		{ RESOURCE_NUMERIC, "SMS_baud", 		0, 1, NULL, 0,  NULL,       1200, &(driver_env.def.baud)  		},		{ RESOURCE_NUMERIC, "SMS_deliver_timeout", 	0, 0, NULL, 0,  NULL,       30,   &(driver_env.def.deliver_timeout)  	},		{ RESOURCE_NUMERIC, "SMS_timeout", 		0, 0, NULL, 0,  NULL,       10,   &(driver_env.def.timeout)  		},		{ RESOURCE_NUMERIC, "SMS_write_timeout", 	0, 0, NULL, 0,  NULL,       10,   &(driver_env.def.write_timeout)  	},		{ RESOURCE_STRING,  "SMS_password", 	        0, 1, NULL, 0,  "xxx",      0,    &(driver_env.szPassword)       	},		{ RESOURCE_NULL,     NULL, 			0, 1, NULL, 0,  NULL,       0, 	  NULL  				}	};/* -------------------------------------------------------------------- */#define DELIVERTIMEOUT 		(driver_env.def.deliver_timeout)#define TIMEOUT 		(driver_env.def.timeout)#define WRITETIMEOUT 		(driver_env.def.write_timeout)/* -------------------------------------------------------------------- */#define FD			(driver_env.def.fd)/* -------------------------------------------------------------------- */static char ANSWER_charset[] =	{		0x20 /* 0x00    */, 0x20 /* 0x01    */, 0x20 /* 0x02    */,		0x20 /* 0x03    */, 0x20 /* 0x04    */, 0x20 /* 0x05    */,		0x20 /* 0x06    */, 0x20 /* 0x07    */, 0x20 /* 0x08    */,		0x20 /* 0x09    */, 0x0A /* 0x0A LF */, 0x20 /* 0x0B    */,		0x20 /* 0x0C    */, 0x0A /* 0x0D LF */, 0x20 /* 0x0E    */,		0x20 /* 0x0F    */, 0x20 /* 0x10    */, 0x20 /* 0x11    */,		0x20 /* 0x12    */, 0x20 /* 0x13    */, 0x20 /* 0x14    */,		0x20 /* 0x15    */, 0x20 /* 0x16    */, 0x20 /* 0x17    */,		0x20 /* 0x18    */, 0x20 /* 0x19    */, 0x20 /* 0x1A    */,		0x20 /* 0x1B    */, 0x20 /* 0x1C    */, 0x20 /* 0x1D    */,		0x20 /* 0x1E    */, 0x20 /* 0x1F    */, 0x20 /* 0x20    */,		0x21 /* 0x21 !  */, 0x22 /* 0x22 "  */, 0x23 /* 0x23 #  */,		0x24 /* 0x24 $  */, 0x25 /* 0x25 %  */, 0x26 /* 0x26 &  */,		0x27 /* 0x27 '  */, 0x28 /* 0x28 (  */, 0x29 /* 0x29 )  */,		0x2A /* 0x2A *  */, 0x2B /* 0x2B +  */, 0x2C /* 0x2C ,  */,		0x2D /* 0x2D -  */, 0x2E /* 0x2E .  */, 0x2F /* 0x2F /  */,		0x30 /* 0x30 0  */, 0x31 /* 0x31 1  */, 0x32 /* 0x32 2  */,		0x33 /* 0x33 3  */, 0x34 /* 0x34 4  */, 0x35 /* 0x35 5  */,		0x36 /* 0x36 6  */, 0x37 /* 0x37 7  */, 0x38 /* 0x38 8  */,		0x39 /* 0x39 9  */, 0x3A /* 0x3A :  */, 0x3B /* 0x3B ;  */,		0x3C /* 0x3C <  */, 0x3D /* 0x3D =  */, 0x3E /* 0x3E >  */,		0x3F /* 0x3F ?  */, 0x40 /* 0x40 @  */, 0x41 /* 0x41 A  */,		0x42 /* 0x42 B  */, 0x43 /* 0x43 C  */, 0x44 /* 0x44 D  */,		0x45 /* 0x45 E  */, 0x46 /* 0x46 F  */, 0x47 /* 0x47 G  */,		0x48 /* 0x48 H  */, 0x49 /* 0x49 I  */, 0x4A /* 0x4A J  */,		0x4B /* 0x4B K  */, 0x4C /* 0x4C L  */, 0x4D /* 0x4D M  */,		0x4E /* 0x4E N  */, 0x4F /* 0x4F O  */, 0x50 /* 0x50 P  */,		0x51 /* 0x51 Q  */, 0x52 /* 0x52 R  */, 0x53 /* 0x53 S  */,		0x54 /* 0x54 T  */, 0x55 /* 0x55 U  */, 0x56 /* 0x56 V  */,		0x57 /* 0x57 W  */, 0x58 /* 0x58 X  */, 0x59 /* 0x59 Y  */,		0x5A /* 0x5A Z  */, 0x20 /* 0x5B    */, 0x20 /* 0x5C    */,		0x20 /* 0x5D    */, 0x20 /* 0x5E    */, 0x20 /* 0x5F    */,		0x20 /* 0x60    */, 0x61 /* 0x61 a  */, 0x62 /* 0x62 b  */,		0x63 /* 0x63 c  */, 0x64 /* 0x64 d  */, 0x65 /* 0x65 e  */,		0x66 /* 0x66 f  */, 0x67 /* 0x67 g  */, 0x68 /* 0x68 h  */,		0x69 /* 0x69 i  */, 0x6A /* 0x6A j  */, 0x6B /* 0x6B k  */,		0x6C /* 0x6C l  */, 0x6D /* 0x6D m  */, 0x6E /* 0x6E n  */,		0x6F /* 0x6F o  */, 0x70 /* 0x70 p  */, 0x71 /* 0x71 q  */,		0x72 /* 0x72 r  */, 0x73 /* 0x73 s  */, 0x74 /* 0x74 t  */,		0x75 /* 0x75 u  */, 0x76 /* 0x76 v  */, 0x77 /* 0x77 w  */,		0x78 /* 0x78 x  */, 0x79 /* 0x79 y  */, 0x7A /* 0x7A z  */,		0x20 /* 0x7B    */, 0x20 /* 0x7C    */, 0x20 /* 0x7D    */,		0x20 /* 0x7E    */, 0x20 /* 0x7F    */, 0x20 /* 0x80    */,		0x20 /* 0x81    */, 0x20 /* 0x82    */, 0x20 /* 0x83    */,		0x20 /* 0x84    */, 0x20 /* 0x85    */, 0x20 /* 0x86    */,		0x20 /* 0x87    */, 0x20 /* 0x88    */, 0x20 /* 0x89    */,		0x20 /* 0x8A    */, 0x20 /* 0x8B    */, 0x20 /* 0x8C    */,		0x20 /* 0x8D    */, 0x20 /* 0x8E    */, 0x20 /* 0x8F    */,		0x20 /* 0x90    */, 0x20 /* 0x91    */, 0x20 /* 0x92    */,		0x20 /* 0x93    */, 0x20 /* 0x94    */, 0x20 /* 0x95    */,		0x20 /* 0x96    */, 0x20 /* 0x97    */, 0x20 /* 0x98    */,		0x20 /* 0x99    */, 0x20 /* 0x9A    */, 0x20 /* 0x9B    */,		0x20 /* 0x9C    */, 0x20 /* 0x9D    */, 0x20 /* 0x9E    */,		0x20 /* 0x9F    */, 0x20 /* 0xA0    */, 0x20 /* 0xA1    */,		0x20 /* 0xA2    */, 0x20 /* 0xA3    */, 0x20 /* 0xA4    */,		0x20 /* 0xA5    */, 0x20 /* 0xA6    */, 0x20 /* 0xA7    */,		0x20 /* 0xA8    */, 0x20 /* 0xA9    */, 0x20 /* 0xAA    */,		0x20 /* 0xAB    */, 0x20 /* 0xAC    */, 0x20 /* 0xAD    */,		0x20 /* 0xAE    */, 0x20 /* 0xAF    */, 0x20 /* 0xB0    */,		0x20 /* 0xB1    */, 0x20 /* 0xB2    */, 0x20 /* 0xB3    */,		0x20 /* 0xB4    */, 0x20 /* 0xB5    */, 0x20 /* 0xB6    */,		0x20 /* 0xB7    */, 0x20 /* 0xB8    */, 0x20 /* 0xB9    */,		0x20 /* 0xBA    */, 0x20 /* 0xBB    */, 0x20 /* 0xBC    */,		0x20 /* 0xBD    */, 0x20 /* 0xBE    */, 0x20 /* 0xBF    */,		0x20 /* 0xC0    */, 0x20 /* 0xC1    */, 0x20 /* 0xC2    */,		0x20 /* 0xC3    */, 0x20 /* 0xC4    */, 0x20 /* 0xC5    */,		0x20 /* 0xC6    */, 0x20 /* 0xC7    */, 0x20 /* 0xC8    */,		0x20 /* 0xC9    */, 0x20 /* 0xCA    */, 0x20 /* 0xCB    */,		0x20 /* 0xCC    */, 0x20 /* 0xCD    */, 0x20 /* 0xCE    */,		0x20 /* 0xCF    */, 0x20 /* 0xD0    */, 0x20 /* 0xD1    */,		0x20 /* 0xD2    */, 0x20 /* 0xD3    */, 0x20 /* 0xD4    */,		0x20 /* 0xD5    */, 0x20 /* 0xD6    */, 0x20 /* 0xD7    */,		0x20 /* 0xD8    */, 0x20 /* 0xD9    */, 0x20 /* 0xDA    */,		0x20 /* 0xDB    */, 0x20 /* 0xDC    */, 0x20 /* 0xDD    */,		0x20 /* 0xDE    */, 0x20 /* 0xDF    */, 0x20 /* 0xE0    */,		0x20 /* 0xE1    */, 0x20 /* 0xE2    */, 0x20 /* 0xE3    */,		0x20 /* 0xE4    */, 0x20 /* 0xE5    */, 0x20 /* 0xE6    */,		0x20 /* 0xE7    */, 0x20 /* 0xE8    */, 0x20 /* 0xE9    */,		0x20 /* 0xEA    */, 0x20 /* 0xEB    */, 0x20 /* 0xEC    */,		0x20 /* 0xED    */, 0x20 /* 0xEE    */, 0x20 /* 0xEF    */,		0x20 /* 0xF0    */, 0x20 /* 0xF1    */, 0x20 /* 0xF2    */,		0x20 /* 0xF3    */, 0x20 /* 0xF4    */, 0x20 /* 0xF5    */,		0x20 /* 0xF6    */, 0x20 /* 0xF7    */, 0x20 /* 0xF8    */,		0x20 /* 0xF9    */, 0x20 /* 0xFA    */, 0x20 /* 0xFB    */,		0x20 /* 0xFC    */, 0x20 /* 0xFD    */, 0x20 /* 0xFE    */,		0x20 /* 0xFF    */	};/* -------------------------------------------------------------------- */static char *ACK2 = "PACNET";static char *ACK3 = "PORT";static char *ACK4 = "Welcome to AnswerPage";static char *ACK5 = "ID";static char *ACK6 = "?00";static char *ACK7 = "or CLR to Exit";static char *ACK8 = "?90";static char *ACK9 = "?92";static char *REQ2 = "-9700000301\r";static char *REQ3 = "@";static char *REQ4 = "CLR\r";static char *REQ5 = "\r";/* -------------------------------------------------------------------- */static void ANSWER_buildmessage(char *, char *, char *);static int ANSWER_login(void);static int ANSWER_sendmessage(char *msisdn, char *message);static void ANSWER_hangup(void);static int ANSWER_send_disconnect(void);/* -------------------------------------------------------------------- *//* -------------------------------------------------------------------- */static void ANSWER_hangup(void){	default_hangup((DRIVER_DEFAULT_ENV *)(&driver_env));}/* -------------------------------------------------------------------- *//* -------------------------------------------------------------------- */static int ANSWER_send_disconnect(void){	char buf[MAX_RESPONSE_BUFSIZE];	lprintf(LOG_STANDARD, "Disconnect...\n");		twrite(FD, REQ4, strlen(REQ4), TIMEOUT);	if (expstr(FD, buf, ACK9, MAX_RESPONSE_BUFSIZE, DELIVERTIMEOUT) == 0)	{		lprintf(LOG_STANDARD, "Disconnected from answer services\n");	}	else	{	lprintf(LOG_STANDARD, "Failed to disconnect from answer services\n");		ANSWER_hangup();		return EANSWER_NODISCONNECT;	}  	return 0;}/* -------------------------------------------------------------------- *//* -------------------------------------------------------------------- */static int ANSWER_login(void){	char buf[MAX_RESPONSE_BUFSIZE];	lprintf(LOG_STANDARD, "Login...\n");	if (expstr(FD, buf, ACK2, MAX_RESPONSE_BUFSIZE, DELIVERTIMEOUT) != 0 ||	   expstr(FD, buf, ACK3, MAX_RESPONSE_BUFSIZE, TIMEOUT) != 0)	{			lprintf(LOG_STANDARD, "Pacnet prompt not received\n");		ANSWER_hangup();		return EANSWER_NOACK;	}	if (strcmp (driver_env.szPassword, "xxx") == 0)	{	strcpy (buf, "R");	}	else	{	strcpy (buf, "N");		strcat (buf, driver_env.szPassword);	}	strcat (buf, REQ2);	twrite(FD, buf, strlen(buf), TIMEOUT);	if (expstr(FD, buf, ACK4, MAX_RESPONSE_BUFSIZE, TIMEOUT) == 0 &&	    expstr(FD, buf, ACK5, MAX_RESPONSE_BUFSIZE, TIMEOUT) == 0)	{		lprintf(LOG_STANDARD, "Login successful\n");	}	else	{	lprintf(LOG_STANDARD, "Login failed\n");		ANSWER_hangup();		return EANSWER_NOLOGIN;	}	return 0;}/* -------------------------------------------------------------------- *//* -------------------------------------------------------------------- */static void ANSWER_buildmessage(char *answer_message, char *msisdn, char *message){	int 	i;	char	*ptr;	/* ---------------------------- */	answer_message[0] = '\0';  	strcat(answer_message, msisdn);	strcat(answer_message, REQ3);		/* Convert message so that it contains	*/	/* only ANSWER valid characters		*/	/* any invalid characters will be	*/ 	/* mapped to a SPACE			*/	/* Add to answer_message		*/	ptr = answer_message;	while(*ptr != '\0')	{		ptr++;	}	for (i=0; i<strlen(message) ; i++)	{			*ptr = ANSWER_charset[(int)message[i]];		ptr++;	}  	*ptr = '\0';	strcat(answer_message, REQ5);}/* -------------------------------------------------------------------- *//* -------------------------------------------------------------------- */static int ANSWER_sendmessage(char *msisdn, char *message){	char 	buf[MAX_RESPONSE_BUFSIZE],		req_message[200];	if (strlen (msisdn) > 4)	{		lprintf(LOG_STANDARD, "Pager number too long\n");		return EMESSAGETOOLONG;	}	if (strlen (message) > 160)	{		lprintf(LOG_STANDARD, "Pager message too long\n");		return EMESSAGETOOLONG;	}	ANSWER_buildmessage(req_message, msisdn, message);	twrite(FD, req_message, strlen(req_message), TIMEOUT);	if (expstr(FD, buf, ACK6, strlen (ACK6), DELIVERTIMEOUT) == 0)	{    		lprintf(LOG_STANDARD, "Received Message Response\n");	}	else	{	if (strncmp (buf, ACK8, strlen (ACK8)) == 0)		{			lprintf(LOG_STANDARD, "Invalid pager number\n");		}		else		{	lprintf(LOG_STANDARD, "Pager message failed: %s\n", buf);			ANSWER_hangup();			return EANSWER_NODELIVERY;		}	}	if (expstr(FD, buf, ACK7, MAX_RESPONSE_BUFSIZE, TIMEOUT) == 0)	{	lprintf(LOG_STANDARD, "Received text too\n");	}	else	{	lprintf(LOG_STANDARD, "Text not received\n");	}	return 0;}/* -------------------------------------------------------------------- *//* The following structure is used by core driver code. 		*//* The diagram below shows the call sequence of the functions.		*//* -------------------------------------------------------------------- */DEVICE_ENTRY answer_device = {	"ANSWER",	resource_list,	(DRIVER_DEFAULT_ENV *)(&driver_env),	default_init,				/* Init			*/ 	default_main,				/* Main			*/	default_validate_numeric_id,		/* Validation		*/	default_dial,				/* Dial			*/	default_hangup,				/* Hangup		*/	ANSWER_send_disconnect,			/* Disconnect		*/	default_single_deliver,			/* Deliver 		*/	ANSWER_sendmessage,			/* Send			*/	ANSWER_login				/* Login		*/};

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
日韩在线一二三区| 欧美亚洲动漫精品| 久久久久国产精品麻豆ai换脸 | 国产网红主播福利一区二区| 国产在线精品一区在线观看麻豆| 久久免费美女视频| www.日韩av| 石原莉奈在线亚洲二区| 久久久99久久| 欧美日韩亚洲综合| 国产在线精品一区二区| 亚洲一区影音先锋| 欧美精品一区二| 一本到一区二区三区| 天天免费综合色| 欧美国产亚洲另类动漫| 欧美日韩久久久久久| 国产老肥熟一区二区三区| 亚洲永久免费视频| 2023国产精品| 欧美性一区二区| 精品在线你懂的| 一区二区三区中文字幕电影| 日韩欧美二区三区| 色av一区二区| 国产成人av一区二区| 亚洲精品国产第一综合99久久| 日韩一区二区三免费高清| www.亚洲国产| 国产在线视视频有精品| 亚洲第一激情av| 国产精品视频看| 日韩欧美中文一区| 欧美日韩精品欧美日韩精品一综合| 国产精品综合网| 亚洲aⅴ怡春院| 国产精品第五页| 精品国产sm最大网站免费看| 欧美日韩大陆在线| 91社区在线播放| 成人国产免费视频| 国产精品一区二区视频| 久久国产视频网| 亚洲va欧美va人人爽午夜| 亚洲综合一区在线| 亚洲精品国产第一综合99久久| 中文字幕不卡三区| 国产日韩影视精品| 国产午夜亚洲精品理论片色戒 | 欧美一级专区免费大片| 欧美日韩一级片在线观看| 99精品久久99久久久久| av电影天堂一区二区在线| 国产福利精品导航| 国产成人av电影在线观看| 国内精品久久久久影院色| 美国一区二区三区在线播放| 无码av中文一区二区三区桃花岛| 亚洲福利一二三区| 一区二区三区中文在线| 亚洲一区二区三区激情| 亚洲国产日韩a在线播放| 亚洲国产日韩综合久久精品| 天天色综合天天| 奇米综合一区二区三区精品视频| 麻豆久久一区二区| 久久99精品一区二区三区 | 激情五月婷婷综合| 国产在线日韩欧美| 99精品热视频| 色av一区二区| 日韩视频一区二区三区在线播放 | 国产麻豆视频一区二区| 国产一区二区不卡| 99久久婷婷国产综合精品电影| 99久久久国产精品| 91精品中文字幕一区二区三区| 91麻豆精品国产91久久久资源速度| 7799精品视频| 久久精品人人做人人爽97| 国产日产欧美一区| 夜夜揉揉日日人人青青一国产精品| 午夜免费久久看| 国产福利91精品| 欧美性xxxxxx少妇| 欧美mv日韩mv国产网站| 中文字幕一区二| 老司机一区二区| 成人白浆超碰人人人人| 欧美日本一区二区三区四区| 国产日韩精品一区二区三区| 一区二区三区四区不卡在线| 久久精品99国产精品日本| 成人精品视频网站| 欧美精品 国产精品| 欧美激情资源网| 爽好久久久欧美精品| 国产福利一区在线观看| 欧美三级韩国三级日本三斤| 久久新电视剧免费观看| 一区二区三区在线视频播放| 日韩av一二三| 99久久夜色精品国产网站| 日韩欧美高清dvd碟片| 亚洲最新在线观看| 成人伦理片在线| 久久综合九色综合97婷婷| 午夜精品成人在线视频| 91免费看`日韩一区二区| 久久先锋资源网| 日韩国产精品久久久| 97精品国产露脸对白| 国产三级三级三级精品8ⅰ区| 三级精品在线观看| 欧美亚洲国产一区二区三区va | 中文字幕在线不卡视频| 美国精品在线观看| 欧美久久久一区| 亚洲综合区在线| 色婷婷久久久久swag精品| 久久这里只精品最新地址| 蜜臀av性久久久久蜜臀aⅴ四虎 | 日韩免费视频线观看| 午夜久久久久久电影| 欧洲av一区二区嗯嗯嗯啊| 综合久久一区二区三区| 国产成人综合精品三级| 久久日一线二线三线suv| 视频在线观看一区| 欧美放荡的少妇| 午夜视频在线观看一区二区三区| 在线亚洲一区观看| 亚洲伦在线观看| 在线看不卡av| 午夜精品久久久久久久蜜桃app| 欧美性大战久久久久久久蜜臀 | 欧美丝袜丝交足nylons图片| 亚洲人快播电影网| 欧洲亚洲精品在线| 午夜a成v人精品| 这里只有精品电影| 国产一区二区三区| 国产精品国产三级国产aⅴ入口| 国产福利精品导航| 中文字幕一区三区| 欧美曰成人黄网| 午夜影院在线观看欧美| 在线综合视频播放| 国产福利精品一区| 亚洲欧美偷拍三级| 5858s免费视频成人| 精品在线免费视频| 国产精品天天看| 在线精品视频一区二区| 蜜臀va亚洲va欧美va天堂 | 亚洲国产成人在线| 色欲综合视频天天天| 午夜精品一区二区三区电影天堂| 欧美一区二区啪啪| 国产福利电影一区二区三区| 亚洲精品国产精华液| 欧美一区二区三区婷婷月色| 九色综合国产一区二区三区| 国产精品美女www爽爽爽| 欧美日韩国产一二三| 国产成人精品影院| 一区二区在线观看不卡| 日韩美一区二区三区| 91一区二区三区在线播放| 午夜在线成人av| 日本一区二区视频在线观看| 欧美视频一区二区在线观看| 国产一区二区美女诱惑| 亚洲成精国产精品女| 中文字幕第一页久久| 日韩欧美国产精品| 欧美体内she精高潮| 高清成人免费视频| 美国av一区二区| 亚洲一区二区视频在线观看| 久久久久高清精品| 日韩一区二区免费在线电影| 91麻豆精品在线观看| 精品一区二区在线免费观看| 亚洲精品大片www| 国产目拍亚洲精品99久久精品| 欧美高清精品3d| 欧美艳星brazzers| 99久久99久久精品免费观看 | 精品国产一区a| 欧美日韩在线直播| 色综合咪咪久久| 成人免费的视频| 国产精品自拍三区| 国产一区二区调教| 久久99精品久久久久| 天堂一区二区在线免费观看| 一区二区三区欧美激情| 亚洲欧美另类在线| 日韩理论片中文av|