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

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

?? hciattach.c

?? BlueZ源碼
?? C
?? 第 1 頁 / 共 2 頁
字號:
/* * *  BlueZ - Bluetooth protocol stack for Linux * *  Copyright (C) 2000-2001  Qualcomm Incorporated *  Copyright (C) 2002-2003  Maxim Krasnyansky <maxk@qualcomm.com> *  Copyright (C) 2002-2008  Marcel Holtmann <marcel@holtmann.org> * * *  This program is free software; you can redistribute it and/or modify *  it under the terms of the GNU General Public License as published by *  the Free Software Foundation; either version 2 of the License, or *  (at your option) any later version. * *  This program 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 General Public License for more details. * *  You should have received a copy of the GNU General Public License *  along with this program; if not, write to the Free Software *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA * */#ifdef HAVE_CONFIG_H#include <config.h>#endif#include <stdio.h>#include <errno.h>#include <fcntl.h>#include <unistd.h>#include <stdlib.h>#include <string.h>#include <signal.h>#include <syslog.h>#include <termios.h>#include <time.h>#include <sys/time.h>#include <sys/poll.h>#include <sys/param.h>#include <sys/ioctl.h>#include <sys/socket.h>#include <sys/uio.h>#include <bluetooth/bluetooth.h>#include <bluetooth/hci.h>#include <bluetooth/hci_lib.h>#ifndef N_HCI#define N_HCI	15#endif#define HCIUARTSETPROTO		_IOW('U', 200, int)#define HCIUARTGETPROTO		_IOR('U', 201, int)#define HCIUARTGETDEVICE	_IOR('U', 202, int)#define HCI_UART_H4	0#define HCI_UART_BCSP	1#define HCI_UART_3WIRE	2#define HCI_UART_H4DS	3#define HCI_UART_LL	4struct uart_t {	char *type;	int  m_id;	int  p_id;	int  proto;	int  init_speed;	int  speed;	int  flags;	char *bdaddr;	int  (*init) (int fd, struct uart_t *u, struct termios *ti);	int  (*post) (int fd, struct uart_t *u, struct termios *ti);};#define FLOW_CTL	0x0001static volatile sig_atomic_t __io_canceled = 0;static void sig_hup(int sig){}static void sig_term(int sig){	__io_canceled = 1;}static void sig_alarm(int sig){	fprintf(stderr, "Initialization timed out.\n");	exit(1);}static int uart_speed(int s){	switch (s) {	case 9600:		return B9600;	case 19200:		return B19200;	case 38400:		return B38400;	case 57600:		return B57600;	case 115200:		return B115200;	case 230400:		return B230400;	case 460800:		return B460800;	case 500000:		return B500000;	case 576000:		return B576000;	case 921600:		return B921600;	case 1000000:		return B1000000;	case 1152000:		return B1152000;	case 1500000:		return B1500000;	case 2000000:		return B2000000;#ifdef B2500000	case 2500000:		return B2500000;#endif#ifdef B3000000	case 3000000:		return B3000000;#endif#ifdef B3500000	case 3500000:		return B3500000;#endif#ifdef B4000000	case 4000000:		return B4000000;#endif	default:		return B57600;	}}int set_speed(int fd, struct termios *ti, int speed){	cfsetospeed(ti, uart_speed(speed));	cfsetispeed(ti, uart_speed(speed));	return tcsetattr(fd, TCSANOW, ti);}/*  * Read an HCI event from the given file descriptor. */int read_hci_event(int fd, unsigned char* buf, int size) {	int remain, r;	int count = 0;	if (size <= 0)		return -1;	/* The first byte identifies the packet type. For HCI event packets, it	 * should be 0x04, so we read until we get to the 0x04. */	while (1) {		r = read(fd, buf, 1);		if (r <= 0)			return -1;		if (buf[0] == 0x04)			break;	}	count++;	/* The next two bytes are the event code and parameter total length. */	while (count < 3) {		r = read(fd, buf + count, 3 - count);		if (r <= 0)			return -1;		count += r;	}	/* Now we read the parameters. */	if (buf[2] < (size - 3)) 		remain = buf[2];	else 		remain = size - 3;	while ((count - 3) < remain) {		r = read(fd, buf + count, remain - (count - 3));		if (r <= 0)			return -1;		count += r;	}	return count;}/*  * Ericsson specific initialization  */static int ericsson(int fd, struct uart_t *u, struct termios *ti){	struct timespec tm = {0, 50000};	char cmd[5];	cmd[0] = HCI_COMMAND_PKT;	cmd[1] = 0x09;	cmd[2] = 0xfc;	cmd[3] = 0x01;	switch (u->speed) {	case 57600:		cmd[4] = 0x03;		break;	case 115200:		cmd[4] = 0x02;		break;	case 230400:		cmd[4] = 0x01;		break;	case 460800:		cmd[4] = 0x00;		break;	case 921600:		cmd[4] = 0x20;		break;	case 2000000:		cmd[4] = 0x25;		break;	case 3000000:		cmd[4] = 0x27;		break;	case 4000000:		cmd[4] = 0x2B;		break;	default:		cmd[4] = 0x03;		u->speed = 57600;		fprintf(stderr, "Invalid speed requested, using %d bps instead\n", u->speed);		break;	}	/* Send initialization command */	if (write(fd, cmd, 5) != 5) {		perror("Failed to write init command");		return -1;	}	nanosleep(&tm, NULL);	return 0;}/*  * Digianswer specific initialization  */static int digi(int fd, struct uart_t *u, struct termios *ti){	struct timespec tm = {0, 50000};	char cmd[5];	/* DigiAnswer set baud rate command */	cmd[0] = HCI_COMMAND_PKT;	cmd[1] = 0x07;	cmd[2] = 0xfc;	cmd[3] = 0x01;	switch (u->speed) {	case 57600:		cmd[4] = 0x08;		break;	case 115200:		cmd[4] = 0x09;		break;	default:		cmd[4] = 0x09;		u->speed = 115200;		break;	}	/* Send initialization command */	if (write(fd, cmd, 5) != 5) {		perror("Failed to write init command");		return -1;	}	nanosleep(&tm, NULL);	return 0;}extern int texas_init(int fd, struct termios *ti);extern int texas_post(int fd, struct termios *ti);static int texas(int fd, struct uart_t *u, struct termios *ti){	return texas_init(fd, ti);}static int texas2(int fd, struct uart_t *u, struct termios *ti){	return texas_post(fd, ti);}extern int texasalt_init(int fd, int speed);static int texasalt(int fd, struct uart_t *u, struct termios *ti){	return texasalt_init(fd, u->speed);}static int read_check(int fd, void *buf, int count){	int res;	do {		res = read(fd, buf, count);		if (res != -1) {			buf += res; 			count -= res;		}	} while (count && (errno == 0 || errno == EINTR));	if (count)		return -1;	return 0;}/* * BCSP specific initialization */int serial_fd;static void bcsp_tshy_sig_alarm(int sig){	static int retries=0;	unsigned char bcsp_sync_pkt[10] = {0xc0,0x00,0x41,0x00,0xbe,0xda,0xdc,0xed,0xed,0xc0};	int len;	if (retries < 10) {		retries++;		len = write(serial_fd, &bcsp_sync_pkt, 10);		alarm(1);		return;	}	tcflush(serial_fd, TCIOFLUSH);	fprintf(stderr, "BCSP initialization timed out\n");	exit(1);}static void bcsp_tconf_sig_alarm(int sig){	static int retries=0;	unsigned char bcsp_conf_pkt[10] = {0xc0,0x00,0x41,0x00,0xbe,0xad,0xef,0xac,0xed,0xc0};	int len;	if (retries < 10){		retries++;		len = write(serial_fd, &bcsp_conf_pkt, 10);		alarm(1);		return;	}	tcflush(serial_fd, TCIOFLUSH);	fprintf(stderr, "BCSP initialization timed out\n");	exit(1);}static int bcsp(int fd, struct uart_t *u, struct termios *ti){	unsigned char byte, bcsph[4], bcspp[4],		bcsp_sync_resp_pkt[10] = {0xc0,0x00,0x41,0x00,0xbe,0xac,0xaf,0xef,0xee,0xc0},		bcsp_conf_resp_pkt[10] = {0xc0,0x00,0x41,0x00,0xbe,0xde,0xad,0xd0,0xd0,0xc0},		bcspsync[4]     = {0xda, 0xdc, 0xed, 0xed},		bcspsyncresp[4] = {0xac,0xaf,0xef,0xee},		bcspconf[4]     = {0xad,0xef,0xac,0xed},		bcspconfresp[4] = {0xde,0xad,0xd0,0xd0};	struct sigaction sa;	int len;	if (set_speed(fd, ti, u->speed) < 0) {		perror("Can't set default baud rate");		return -1;	}	ti->c_cflag |= PARENB;	ti->c_cflag &= ~(PARODD);	if (tcsetattr(fd, TCSANOW, ti) < 0) {		perror("Can't set port settings");		return -1;	}	alarm(0);	serial_fd = fd;	memset(&sa, 0, sizeof(sa));	sa.sa_flags = SA_NOCLDSTOP;	sa.sa_handler = bcsp_tshy_sig_alarm;	sigaction(SIGALRM, &sa, NULL);	/* State = shy */	bcsp_tshy_sig_alarm(0);	while (1) {		do {			if (read_check(fd, &byte, 1) == -1){				perror("Failed to read");				return -1;			}		} while (byte != 0xC0);		do {			if ( read_check(fd, &bcsph[0], 1) == -1){				perror("Failed to read");				return -1;			}		} while (bcsph[0] == 0xC0);		if ( read_check(fd, &bcsph[1], 3) == -1){			perror("Failed to read");			return -1;		}		if (((bcsph[0] + bcsph[1] + bcsph[2]) & 0xFF) != (unsigned char)~bcsph[3])			continue;		if (bcsph[1] != 0x41 || bcsph[2] != 0x00)			continue;		if (read_check(fd, &bcspp, 4) == -1){			perror("Failed to read");			return -1;		}		if (!memcmp(bcspp, bcspsync, 4)) {			len = write(fd, &bcsp_sync_resp_pkt,10);		} else if (!memcmp(bcspp, bcspsyncresp, 4))			break;	}	/* State = curious */	alarm(0);	sa.sa_handler = bcsp_tconf_sig_alarm;	sigaction(SIGALRM, &sa, NULL);	alarm(1);	while (1) {		do {			if (read_check(fd, &byte, 1) == -1){				perror("Failed to read");				return -1;			}		} while (byte != 0xC0);		do {			if (read_check(fd, &bcsph[0], 1) == -1){				perror("Failed to read");				return -1;			}		} while (bcsph[0] == 0xC0);		if (read_check(fd, &bcsph[1], 3) == -1){			perror("Failed to read");			return -1;		}		if (((bcsph[0] + bcsph[1] + bcsph[2]) & 0xFF) != (unsigned char)~bcsph[3])			continue;		if (bcsph[1] != 0x41 || bcsph[2] != 0x00)			continue;		if (read_check(fd, &bcspp, 4) == -1){			perror("Failed to read");			return -1;		}		if (!memcmp(bcspp, bcspsync, 4))			len = write(fd, &bcsp_sync_resp_pkt, 10);		else if (!memcmp(bcspp, bcspconf, 4))			len = write(fd, &bcsp_conf_resp_pkt, 10);		else if (!memcmp(bcspp, bcspconfresp,  4))			break;	}	/* State = garrulous */	return 0;}/*  * CSR specific initialization  * Inspired strongly by code in OpenBT and experimentations with Brainboxes * Pcmcia card. * Jean Tourrilhes <jt@hpl.hp.com> - 14.11.01 */static int csr(int fd, struct uart_t *u, struct termios *ti){	struct timespec tm = {0, 10000000};	/* 10ms - be generous */	unsigned char cmd[30];		/* Command */	unsigned char resp[30];		/* Response */	int  clen = 0;		/* Command len */	static int csr_seq = 0;	/* Sequence number of command */	int  divisor;	/* It seems that if we set the CSR UART speed straight away, it	 * won't work, the CSR UART gets into a state where we can't talk	 * to it anymore.	 * On the other hand, doing a read before setting the CSR speed	 * seems to be ok.	 * Therefore, the strategy is to read the build ID (useful for	 * debugging) and only then set the CSR UART speed. Doing like	 * this is more complex but at least it works ;-)	 * The CSR UART control may be slow to wake up or something because	 * every time I read its speed, its bogus...	 * Jean II */	/* Try to read the build ID of the CSR chip */	clen = 5 + (5 + 6) * 2;	/* HCI header */	cmd[0] = HCI_COMMAND_PKT;	cmd[1] = 0x00;		/* CSR command */	cmd[2] = 0xfc;		/* MANUFACTURER_SPEC */	cmd[3] = 1 + (5 + 6) * 2;	/* len */	/* CSR MSG header */	cmd[4] = 0xC2;		/* first+last+channel=BCC */	/* CSR BCC header */	cmd[5] = 0x00;		/* type = GET-REQ */	cmd[6] = 0x00;		/* - msB */	cmd[7] = 5 + 4;		/* len */	cmd[8] = 0x00;		/* - msB */	cmd[9] = csr_seq & 0xFF;/* seq num */	cmd[10] = (csr_seq >> 8) & 0xFF;	/* - msB */	csr_seq++;	cmd[11] = 0x19;		/* var_id = CSR_CMD_BUILD_ID */	cmd[12] = 0x28;		/* - msB */	cmd[13] = 0x00;		/* status = STATUS_OK */	cmd[14] = 0x00;		/* - msB */	/* CSR BCC payload */	memset(cmd + 15, 0, 6 * 2);	/* Send command */	do {		if (write(fd, cmd, clen) != clen) {			perror("Failed to write init command (GET_BUILD_ID)");			return -1;		}		/* Read reply. */		if (read_hci_event(fd, resp, 100) < 0) {			perror("Failed to read init response (GET_BUILD_ID)");			return -1;		}	/* Event code 0xFF is for vendor-specific events, which is 	 * what we're looking for. */	} while (resp[1] != 0xFF);#ifdef CSR_DEBUG	{	char temp[512];	int i;	for (i=0; i < rlen; i++)		sprintf(temp + (i*3), "-%02X", resp[i]);	fprintf(stderr, "Reading CSR build ID %d [%s]\n", rlen, temp + 1);	// In theory, it should look like :	// 04-FF-13-FF-01-00-09-00-00-00-19-28-00-00-73-00-00-00-00-00-00-00	}#endif	/* Display that to user */	fprintf(stderr, "CSR build ID 0x%02X-0x%02X\n", 		resp[15] & 0xFF, resp[14] & 0xFF);	/* Try to read the current speed of the CSR chip */	clen = 5 + (5 + 4)*2;	/* -- HCI header */	cmd[3] = 1 + (5 + 4)*2;	/* len */	/* -- CSR BCC header -- */	cmd[9] = csr_seq & 0xFF;	/* seq num */	cmd[10] = (csr_seq >> 8) & 0xFF;	/* - msB */	csr_seq++;	cmd[11] = 0x02;		/* var_id = CONFIG_UART */	cmd[12] = 0x68;		/* - msB */#ifdef CSR_DEBUG	/* Send command */	do {		if (write(fd, cmd, clen) != clen) {			perror("Failed to write init command (GET_BUILD_ID)");			return -1;		}		/* Read reply. */		if (read_hci_event(fd, resp, 100) < 0) {			perror("Failed to read init response (GET_BUILD_ID)");			return -1;		}	/* Event code 0xFF is for vendor-specific events, which is 	 * what we're looking for. */	} while (resp[1] != 0xFF);	{	char temp[512];	int i;	for (i=0; i < rlen; i++)		sprintf(temp + (i*3), "-%02X", resp[i]);	fprintf(stderr, "Reading CSR UART speed %d [%s]\n", rlen, temp+1);	}#endif	if (u->speed > 1500000) {		fprintf(stderr, "Speed %d too high. Remaining at %d baud\n", 			u->speed, u->init_speed);		u->speed = u->init_speed;	} else if (u->speed != 57600 && uart_speed(u->speed) == B57600) {		/* Unknown speed. Why oh why can't we just pass an int to the kernel? */		fprintf(stderr, "Speed %d unrecognised. Remaining at %d baud\n",			u->speed, u->init_speed);		u->speed = u->init_speed;	}	if (u->speed == u->init_speed)		return 0;	/* Now, create the command that will set the UART speed */	/* CSR BCC header */	cmd[5] = 0x02;			/* type = SET-REQ */	cmd[6] = 0x00;			/* - msB */	cmd[9] = csr_seq & 0xFF;	/* seq num */	cmd[10] = (csr_seq >> 8) & 0xFF;/* - msB */	csr_seq++;	divisor = (u->speed*64+7812)/15625;	/* No parity, one stop bit -> divisor |= 0x0000; */	cmd[15] = (divisor) & 0xFF;		/* divider */	cmd[16] = (divisor >> 8) & 0xFF;	/* - msB */	/* The rest of the payload will be 0x00 */#ifdef CSR_DEBUG	{	char temp[512];	int i;	for(i = 0; i < clen; i++)		sprintf(temp + (i*3), "-%02X", cmd[i]);	fprintf(stderr, "Writing CSR UART speed %d [%s]\n", clen, temp + 1);	// In theory, it should look like :	// 01-00-FC-13-C2-02-00-09-00-03-00-02-68-00-00-BF-0E-00-00-00-00-00-00	// 01-00-FC-13-C2-02-00-09-00-01-00-02-68-00-00-D8-01-00-00-00-00-00-00	}#endif	/* Send the command to set the CSR UART speed */	if (write(fd, cmd, clen) != clen) {		perror("Failed to write init command (SET_UART_SPEED)");		return -1;	}	nanosleep(&tm, NULL);	return 0;}/*  * Silicon Wave specific initialization  * Thomas Moser <thomas.moser@tmoser.ch> */static int swave(int fd, struct uart_t *u, struct termios *ti){	struct timespec tm = { 0, 500000 };	char cmd[10], rsp[100];	int r;	// Silicon Wave set baud rate command	// see HCI Vendor Specific Interface from Silicon Wave	// first send a "param access set" command to set the	// appropriate data fields in RAM. Then send a "HCI Reset	// Subcommand", e.g. "soft reset" to make the changes effective.	cmd[0] = HCI_COMMAND_PKT;	// it's a command packet	cmd[1] = 0x0B;			// OCF 0x0B	= param access set		cmd[2] = 0xfc;			// OGF bx111111 = vendor specific	cmd[3] = 0x06;			// 6 bytes of data following

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
91在线免费看| 精品在线一区二区三区| 国产精品久久久久久户外露出| 91精品国产手机| 欧美日韩一区中文字幕| 日本韩国精品一区二区在线观看| 成人aa视频在线观看| 91香蕉视频污| 欧美午夜一区二区三区| 777午夜精品免费视频| 欧美亚洲动漫精品| 91精品国产福利| 亚洲精品一区二区三区蜜桃下载 | 亚洲影院理伦片| 亚洲精品乱码久久久久久日本蜜臀| 国产精品成人免费| 亚洲精品国产视频| 日韩电影免费在线观看网站| 美女视频黄 久久| 国产成人丝袜美腿| 成人黄色国产精品网站大全在线免费观看| 国产高清在线精品| 91麻豆免费观看| 日韩网站在线看片你懂的| 2023国产精品| 亚洲精品免费在线播放| 免费观看成人av| jizz一区二区| 欧美午夜一区二区三区免费大片| 精品国产一区二区三区忘忧草| 国产欧美精品一区二区色综合 | 欧美久久一二区| 精品国产乱码久久久久久老虎| 国产欧美日韩麻豆91| 亚洲一区二区欧美日韩| 国产一区二区h| 色琪琪一区二区三区亚洲区| 日韩欧美视频在线| 亚洲素人一区二区| 久久国产精品99精品国产| av激情亚洲男人天堂| 欧美一卡2卡三卡4卡5免费| 中文字幕不卡在线播放| 亚洲大片精品永久免费| 成人黄色av网站在线| 欧美久久久久久久久中文字幕| 国产嫩草影院久久久久| 免费在线观看一区二区三区| 91一区二区在线| 精品国产一区二区三区av性色| 最新国产成人在线观看| 国产精品123区| 日韩一区二区电影在线| 亚洲图片欧美一区| youjizz国产精品| 精品免费日韩av| 亚洲国产欧美另类丝袜| 99精品国产热久久91蜜凸| 久久综合九色综合久久久精品综合 | 亚洲精品第1页| 岛国精品在线播放| 久久久.com| 人人超碰91尤物精品国产| 日本韩国一区二区三区| 亚洲三级在线播放| 国产福利一区二区三区视频在线| 91麻豆精品国产综合久久久久久| 一区二区三区四区在线| 91免费看`日韩一区二区| 国产精品全国免费观看高清| 国产精品一区二区三区四区| 精品欧美一区二区三区精品久久| 男女男精品网站| 日韩精品一区二区在线| 九色porny丨国产精品| 日韩欧美一区中文| 久久国产精品免费| 久久久久久久久免费| 国产成人综合亚洲网站| 国产精品网曝门| 成人av电影在线播放| 亚洲视频狠狠干| 欧美三级电影在线看| 午夜精品久久久久久久久久久 | 午夜精品一区二区三区免费视频 | 精品粉嫩aⅴ一区二区三区四区| 老司机精品视频一区二区三区| 日韩精品专区在线影院重磅| 九九在线精品视频| 中文字幕乱码久久午夜不卡| www.日韩精品| 一区二区在线观看不卡| 欧美日韩一区二区三区不卡| 免费人成在线不卡| 国产女人aaa级久久久级| 91麻豆精品秘密| 午夜欧美在线一二页| 欧美一级二级三级乱码| 国产91丝袜在线观看| 亚洲蜜桃精久久久久久久| 欧美色手机在线观看| 麻豆国产欧美一区二区三区| 国产欧美日韩激情| 欧美在线视频日韩| 狠狠网亚洲精品| 亚洲欧洲日本在线| 欧美精品v日韩精品v韩国精品v| 国内精品免费**视频| 亚洲欧美日本在线| 欧美一区二区日韩| 成人动漫中文字幕| 免费观看在线色综合| 国产精品三级电影| 日韩一级高清毛片| 色综合天天视频在线观看| 久久精品国产亚洲高清剧情介绍 | 久久午夜电影网| 色综合天天综合网天天狠天天| 日本在线不卡一区| 亚洲欧洲精品一区二区精品久久久| 欧美精品高清视频| 色先锋资源久久综合| 国产又粗又猛又爽又黄91精品| 亚洲九九爱视频| 国产亚洲婷婷免费| 欧美日韩日日夜夜| 91网站最新地址| 国产精品亚洲午夜一区二区三区| 亚洲第一成人在线| 一区二区在线观看视频| 国产人伦精品一区二区| 69堂国产成人免费视频| 色综合久久久网| 成人h精品动漫一区二区三区| 精品中文字幕一区二区| 亚洲大片在线观看| 一区二区三区国产豹纹内裤在线 | 亚洲一区在线免费观看| 国产日韩av一区| 国产色产综合产在线视频| 日韩欧美www| 宅男在线国产精品| 欧美日免费三级在线| 91免费看`日韩一区二区| 99久久精品国产一区二区三区| 国产精品69毛片高清亚洲| 激情欧美一区二区| 精品写真视频在线观看| 日韩精品亚洲一区| 日韩精品高清不卡| 青青草国产成人99久久| 亚洲动漫第一页| 天堂资源在线中文精品| 一区二区三区在线观看欧美| 亚洲人午夜精品天堂一二香蕉| 中文字幕一区不卡| 亚洲人成亚洲人成在线观看图片| 亚洲人成精品久久久久| 亚洲色图欧洲色图婷婷| 亚洲免费毛片网站| 亚洲小说春色综合另类电影| 亚洲国产成人av网| 日韩**一区毛片| 韩日精品视频一区| 成人午夜在线播放| 99久久精品国产一区| 在线精品视频小说1| 8v天堂国产在线一区二区| 欧美一区二区大片| 国产偷v国产偷v亚洲高清| 自拍偷拍亚洲激情| 亚洲一卡二卡三卡四卡无卡久久| 天天做天天摸天天爽国产一区 | 国产毛片精品国产一区二区三区| 国产成人午夜视频| 91麻豆文化传媒在线观看| 欧美日韩国产成人在线免费| 欧美一区二区三区视频免费| 久久亚洲影视婷婷| 成人免费一区二区三区视频 | 麻豆国产精品官网| 成人黄色片在线观看| 欧美午夜精品理论片a级按摩| 日韩区在线观看| 久久精品亚洲乱码伦伦中文| 亚洲精品写真福利| 久久99精品久久久久| av在线不卡网| 日韩午夜精品电影| 中文字幕在线视频一区| 奇米影视在线99精品| 成人av电影在线| 欧美xxxxxxxx| 亚洲国产精品一区二区尤物区| 国产一区二区伦理| 色综合久久九月婷婷色综合| 精品1区2区在线观看| 亚洲国产人成综合网站| 不卡一区二区中文字幕| 欧美一卡二卡在线观看|