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

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

?? mbus.c

?? 網絡MPEG4IP流媒體開發源代碼
?? C
?? 第 1 頁 / 共 2 頁
字號:
/* * FILE:     mbus.c * AUTHOR:   Colin Perkins * MODIFIED: Orion Hodson *           Markus Germeier *  * Copyright (c) 1997-2000 University College London * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, is permitted provided that the following conditions  * are met: * 1. Redistributions of source code must retain the above 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 software developed by the Computer Science *      Department at University College London * 4. Neither the name of the University nor of the Department may be used *    to endorse or promote products derived from this software without *    specific prior written permission. * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESSED 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 AUTHORS 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. */#include "config_unix.h"#include "config_win32.h"#include "debug.h"#include "memory.h"#include "net_udp.h"#include "hmac.h"#include "qfDES.h"#include "base64.h"#include "gettimeofday.h"#include "vsnprintf.h"#include "mbus.h"#include "mbus_config.h"#include "mbus_parser.h"#include "mbus_addr.h"#define MBUS_BUF_SIZE	  1500#define MBUS_ACK_BUF_SIZE 1500#define MBUS_MAX_ADDR	    10#define MBUS_MAX_QLEN	    50 /* Number of messages we can queue with mbus_qmsg() */#define MBUS_MAGIC	0x87654321#define MBUS_MSG_MAGIC	0x12345678struct mbus_msg {	struct mbus_msg	*next;	struct timeval	 send_time;	/* Time the message was sent, to trigger a retransmit */	struct timeval	 comp_time;	/* Time the message was composed, the timestamp in the packet header */	char		*dest;	int		 reliable;	int		 complete;	/* Indicates that we've finished adding cmds to this message */	int		 seqnum;	int		 retransmit_count;	int		 message_size;	int		 num_cmds;	char		*cmd_list[MBUS_MAX_QLEN];	char		*arg_list[MBUS_MAX_QLEN];	uint32_t	 idx_list[MBUS_MAX_QLEN];	uint32_t	 magic;		/* For debugging... */};struct mbus {	socket_udp	 	 *s;	char		 	 *addr;				/* Addresses we respond to. 					*/	int		 	  max_other_addr;	int		 	  num_other_addr;	char			**other_addr;			/* Addresses of other entities on the mbus. 			*/        struct timeval          **other_hello;                  /* Time of last mbus.hello we received from other entities      */	int		 	  seqnum;	struct mbus_msg	 	 *cmd_queue;			/* Queue of messages waiting to be sent */	struct mbus_msg	 	 *waiting_ack;			/* The last reliable message sent, if we have not yet got the ACK */	char		 	 *hashkey;	int		 	  hashkeylen;	char		 	 *encrkey;	int		 	  encrkeylen;	struct timeval	 	  last_heartbeat;		/* Last time we sent a heartbeat message */	struct mbus_config	 *cfg;	void (*cmd_handler)(char *src, char *cmd, char *arg, void *dat);	void (*err_handler)(int seqnum, int reason);	uint32_t		  magic;			/* For debugging...                                             */	uint32_t		  index;	uint32_t		  index_sent;};static void mbus_validate(struct mbus *m){#ifdef DEBUG	int	i;	ASSERT(m->num_other_addr <= m->max_other_addr);	ASSERT(m->num_other_addr >= 0);	for (i = 0; i < m->num_other_addr; i++) {		ASSERT(m->other_addr[i]  != NULL);		ASSERT(m->other_hello[i] != NULL);	}	for (i = m->num_other_addr + 1; i < m->max_other_addr; i++) {		ASSERT(m->other_addr[i]  == NULL);		ASSERT(m->other_hello[i] == NULL);	}#endif	ASSERT(m->magic == MBUS_MAGIC);	xmemchk();}static void mbus_msg_validate(struct mbus_msg *m){#ifdef DEBUG	int	i;	ASSERT((m->num_cmds < MBUS_MAX_QLEN) && (m->num_cmds >= 0));	for (i = 0; i < m->num_cmds; i++) {		ASSERT(m->cmd_list[i] != NULL);		ASSERT(m->arg_list[i] != NULL);		if (i > 0) {			ASSERT(m->idx_list[i] > m->idx_list[i-1]);		}	}	for (i = m->num_cmds + 1; i < MBUS_MAX_QLEN; i++) {		ASSERT(m->cmd_list[i] == NULL);		ASSERT(m->arg_list[i] == NULL);	}		ASSERT(m->dest != NULL);#endif	ASSERT(m->magic == MBUS_MSG_MAGIC);}static void store_other_addr(struct mbus *m, char *a){	/* This takes the address a and ensures it is stored in the   */	/* m->other_addr field of the mbus structure. The other_addr  */	/* field should probably be a hash table, but for now we hope */	/* that there are not too many entities on the mbus, so the   */	/* list is small.                                             */	int	i;	mbus_validate(m);	for (i = 0; i < m->num_other_addr; i++) {		if (mbus_addr_match(m->other_addr[i], a)) {			/* Already in the list... */			gettimeofday(m->other_hello[i],NULL);			return;		}	}	if (m->num_other_addr == m->max_other_addr) {		/* Expand the list... */		m->max_other_addr *= 2;		m->other_addr = (char **) xrealloc(m->other_addr, m->max_other_addr * sizeof(char *));		m->other_hello = (struct timeval **) xrealloc(m->other_hello, m->max_other_addr * sizeof(struct timeval *));	}	m->other_hello[m->num_other_addr]=(struct timeval *)xmalloc(sizeof(struct timeval));	gettimeofday(m->other_hello[m->num_other_addr],NULL);	m->other_addr[m->num_other_addr++] = xstrdup(a);}static void remove_other_addr(struct mbus *m, char *a){	/* Removes the address a from the m->other_addr field of the */	/* mbus structure.                                           */	int	i, j;	mbus_validate(m);	for (i = 0; i < m->num_other_addr; i++) {		if (mbus_addr_match(m->other_addr[i], a)) {			xfree(m->other_addr[i]);			xfree(m->other_hello[i]);			for (j = i+1; j < m->num_other_addr; j++) {				m->other_addr[j-1] = m->other_addr[j];				m->other_hello[j-1] = m->other_hello[j];			}			m->other_addr[m->num_other_addr  - 1] = NULL;			m->other_hello[m->num_other_addr - 1] = NULL;			m->num_other_addr--;		}	}}static void remove_inactiv_other_addr(struct mbus *m, struct timeval t, int interval){	/* Remove addresses we haven't heard from for about 5 * interval */	/* Count backwards so it is safe to remove entries               */	int i;    	mbus_validate(m);	for (i=m->num_other_addr-1; i>=0; i--){		if ((t.tv_sec-(m->other_hello[i]->tv_sec)) > 5 * interval) {			debug_msg("remove dead entity (%s)\n", m->other_addr[i]);			remove_other_addr(m, m->other_addr[i]);		}	}}int mbus_addr_valid(struct mbus *m, char *addr){	int	i;	mbus_validate(m);	for (i = 0; i < m->num_other_addr; i++) {		if (mbus_addr_match(m->other_addr[i], addr)) {			return TRUE;		}	}	return FALSE;}static int mbus_addr_unique(struct mbus *m, char *addr){	int     i, n = 0;	mbus_validate(m);	for (i = 0; i < m->num_other_addr; i++) {		if (mbus_addr_match(m->other_addr[i], addr)) {			n++;		}	}	return n==1;}/* The mb_* functions are used to build an mbus message up in the *//* mb_buffer, and to add authentication and encryption before the *//* message is sent.                                               */char	 mb_cryptbuf[MBUS_BUF_SIZE];char	*mb_buffer;char	*mb_bufpos;#define MBUS_AUTH_LEN 16static void mb_header(int seqnum, int ts, char reliable, const char *src, const char *dst, int ackseq){	xmemchk();	mb_buffer   = (char *) xmalloc(MBUS_BUF_SIZE + 1);	memset(mb_buffer,   0, MBUS_BUF_SIZE);	memset(mb_buffer, ' ', MBUS_AUTH_LEN);	mb_bufpos = mb_buffer + MBUS_AUTH_LEN;	sprintf(mb_bufpos, "\nmbus/1.0 %6d %9d %c (%s) %s ", seqnum, ts, reliable, src, dst);	mb_bufpos += 33 + strlen(src) + strlen(dst);	if (ackseq == -1) {		sprintf(mb_bufpos, "()\n");		mb_bufpos += 3;	} else {		sprintf(mb_bufpos, "(%6d)\n", ackseq);		mb_bufpos += 9;	}}static void mb_add_command(const char *cmnd, const char *args){	int offset = strlen(cmnd) + strlen(args) + 5;	ASSERT((mb_bufpos + offset - mb_buffer) < MBUS_BUF_SIZE);	sprintf(mb_bufpos, "%s (%s)\n", cmnd, args);	mb_bufpos += offset - 1; /* The -1 in offset means we're not NUL terminated - fix in mb_send */}static void mb_send(struct mbus *m){	char		digest[16];	int		len;	unsigned char	initVec[8] = {0,0,0,0,0,0,0,0}; 	mbus_validate(m);	*(mb_bufpos++) = '\0';	ASSERT((mb_bufpos - mb_buffer) < MBUS_BUF_SIZE);	ASSERT(strlen(mb_buffer) < MBUS_BUF_SIZE);	/* Pad to a multiple of 8 bytes, so the encryption can work... */	while (((mb_bufpos - mb_buffer) % 8) != 0) {		*(mb_bufpos++) = '\0';	}	len = mb_bufpos - mb_buffer;	ASSERT(len < MBUS_BUF_SIZE);	ASSERT(strlen(mb_buffer) < MBUS_BUF_SIZE);	xmemchk();	if (m->hashkey != NULL) {		/* Authenticate... */		hmac_md5(mb_buffer + MBUS_AUTH_LEN+1, strlen(mb_buffer) - (MBUS_AUTH_LEN+1), m->hashkey, m->hashkeylen, digest);		base64encode(digest, 12, mb_buffer, MBUS_AUTH_LEN);	}	xmemchk();	if (m->encrkey != NULL) {		/* Encrypt... */		memset(mb_cryptbuf, 0, MBUS_BUF_SIZE);		memcpy(mb_cryptbuf, mb_buffer, len);		ASSERT((len % 8) == 0);		ASSERT(len < MBUS_BUF_SIZE);		ASSERT(m->encrkeylen == 8);		xmemchk();		qfDES_CBC_e(m->encrkey, mb_cryptbuf, len, initVec);		xmemchk();		memcpy(mb_buffer, mb_cryptbuf, len);	}	xmemchk();	udp_send(m->s, mb_buffer, len);	xfree(mb_buffer);}static void resend(struct mbus *m, struct mbus_msg *curr) {	/* Don't need to check for buffer overflows: this was done in mbus_send() when */	/* this message was first transmitted. If it was okay then, it's okay now.     */	int	 i;	mbus_validate(m);	mb_header(curr->seqnum, curr->comp_time.tv_sec, (char)(curr->reliable?'R':'U'), m->addr, curr->dest, -1);	for (i = 0; i < curr->num_cmds; i++) {		mb_add_command(curr->cmd_list[i], curr->arg_list[i]);	}	mb_send(m);	curr->retransmit_count++;}void mbus_retransmit(struct mbus *m){	struct mbus_msg	*curr = m->waiting_ack;	struct timeval	time;	long		diff;	mbus_validate(m);	if (!mbus_waiting_ack(m)) {		return;	}	mbus_msg_validate(curr);	gettimeofday(&time, NULL);	/* diff is time in milliseconds that the message has been awaiting an ACK */	diff = ((time.tv_sec * 1000) + (time.tv_usec / 1000)) - ((curr->send_time.tv_sec * 1000) + (curr->send_time.tv_usec / 1000));	if (diff > 10000) {		debug_msg("Reliable mbus message failed!\n");		if (m->err_handler == NULL) {			abort();		}		m->err_handler(curr->seqnum, MBUS_MESSAGE_LOST);		/* if we don't delete this failed message, the error handler                   gets triggered every time we call mbus_retransmit */		while (m->waiting_ack->num_cmds > 0) {		    m->waiting_ack->num_cmds--;		    xfree(m->waiting_ack->cmd_list[m->waiting_ack->num_cmds]);		    xfree(m->waiting_ack->arg_list[m->waiting_ack->num_cmds]);		}		xfree(m->waiting_ack->dest);		xfree(m->waiting_ack);		m->waiting_ack = NULL;		return;	} 	/* Note: We only send one retransmission each time, to avoid	 * overflowing the receiver with a burst of requests...	 */	if ((diff > 750) && (curr->retransmit_count == 2)) {		resend(m, curr);		return;	} 	if ((diff > 500) && (curr->retransmit_count == 1)) {		resend(m, curr);		return;	} 	if ((diff > 250) && (curr->retransmit_count == 0)) {		resend(m, curr);		return;	}}void mbus_heartbeat(struct mbus *m, int interval){	struct timeval	curr_time;	char	*a = (char *) xmalloc(3);	sprintf(a, "()");	mbus_validate(m);	gettimeofday(&curr_time, NULL);	if (curr_time.tv_sec - m->last_heartbeat.tv_sec >= interval) {		mb_header(++m->seqnum, (int) curr_time.tv_sec, 'U', m->addr, "()", -1);		mb_add_command("mbus.hello", "");		mb_send(m);		m->last_heartbeat = curr_time;		/* Remove dead sources */		remove_inactiv_other_addr(m, curr_time, interval);	}	xfree(a);}int mbus_waiting_ack(struct mbus *m){	mbus_validate(m);	return m->waiting_ack != NULL;}int mbus_sent_all(struct mbus *m){	mbus_validate(m);	return (m->cmd_queue == NULL) && (m->waiting_ack == NULL);}struct mbus *mbus_init(void  (*cmd_handler)(char *src, char *cmd, char *arg, void *dat), 		       void  (*err_handler)(int seqnum, int reason),		       char  *addr){	struct mbus		*m;	struct mbus_key	 	 k;	struct mbus_parser	*mp;	int		 	 i;	char            	*net_addr, *tmp;	uint16_t         	 net_port;	int              	 net_scope;	m = (struct mbus *) xmalloc(sizeof(struct mbus));	if (m == NULL) {		debug_msg("Unable to allocate memory for mbus\n");		return NULL;	}	m->cfg = mbus_create_config();	mbus_lock_config_file(m->cfg);	net_addr = (char *) xmalloc(20);	mbus_get_net_addr(m->cfg, net_addr, &net_port, &net_scope);	m->s		  = udp_init(net_addr, net_port, net_port, net_scope);        if (m->s == NULL) {                debug_msg("Unable to initialize mbus address\n");                xfree(m);                return NULL;        }	m->seqnum         = 0;	m->cmd_handler    = cmd_handler;	m->err_handler	  = err_handler;	m->num_other_addr = 0;	m->max_other_addr = 10;	m->other_addr     = (char **) xmalloc(sizeof(char *) * 10);	m->other_hello    = (struct timeval **) xmalloc(sizeof(struct timeval *) * 10);	for (i = 0; i < 10; i++) {		m->other_addr[i]  = NULL;		m->other_hello[i] = NULL;	}	m->cmd_queue	  = NULL;	m->waiting_ack	  = NULL;	m->magic          = MBUS_MAGIC;	m->index          = 0;	m->index_sent     = 0;	mp = mbus_parse_init(xstrdup(addr));	if (!mbus_parse_lst(mp, &tmp)) {		debug_msg("Invalid mbus address\n");		abort();	}	m->addr = xstrdup(tmp);	mbus_parse_done(mp);	ASSERT(m->addr != NULL);	gettimeofday(&(m->last_heartbeat), NULL);	mbus_get_encrkey(m->cfg, &k);	m->encrkey    = k.key;	m->encrkeylen = k.key_len;	mbus_get_hashkey(m->cfg, &k);	m->hashkey    = k.key;	m->hashkeylen = k.key_len;	mbus_unlock_config_file(m->cfg);	xfree(net_addr);	return m;}void mbus_cmd_handler(struct mbus *m, void  (*cmd_handler)(char *src, char *cmd, char *arg, void *dat)){	mbus_validate(m);	m->cmd_handler = cmd_handler;}static void mbus_flush_msgs(struct mbus_msg **queue){        struct mbus_msg *curr, *next;        int i;	        curr = *queue;        while(curr) {                next = curr->next;                xfree(curr->dest);                for(i = 0; i < curr->num_cmds; i++) {                        xfree(curr->cmd_list[i]);                        xfree(curr->arg_list[i]);                }		xfree(curr);

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美经典一区二区| 一区二区三区四区不卡视频| 国产精品久久精品日日| 午夜精品福利一区二区蜜股av| 韩国av一区二区三区在线观看| 91日韩精品一区| 精品国产一区二区三区四区四| 亚洲欧美另类综合偷拍| 国产精品一区在线观看乱码 | 国产午夜精品在线观看| 亚洲一区二区三区视频在线 | 精品一区二区三区免费播放| 91精彩视频在线观看| 久久久精品天堂| 久久成人免费日本黄色| 欧美日韩国产在线播放网站| 亚洲欧洲精品成人久久奇米网| 国内精品写真在线观看| 欧美一区二区三区性视频| 亚洲男女毛片无遮挡| 成人激情小说网站| 久久久久久日产精品| 裸体歌舞表演一区二区| 91精品视频网| 视频一区中文字幕| 欧美性猛片aaaaaaa做受| 亚洲精品免费电影| 99天天综合性| 成人免费在线视频观看| 成人美女视频在线看| 久久久不卡影院| 国产mv日韩mv欧美| 国产亚洲一区二区三区四区| 国产一区在线精品| 精品国产乱码久久久久久1区2区 | 8x福利精品第一导航| 亚洲激情在线激情| 一本色道久久综合亚洲aⅴ蜜桃| 国产女同互慰高潮91漫画| 国产尤物一区二区在线| 久久久综合精品| 国产成人在线影院| 中文字幕在线不卡国产视频| 91香蕉视频在线| 亚洲欧美另类小说视频| 91国偷自产一区二区三区成为亚洲经典| 综合激情成人伊人| 欧美三级韩国三级日本三斤| 秋霞午夜av一区二区三区| 日韩精品在线一区二区| 粉嫩一区二区三区性色av| 国产精品免费av| 欧美自拍偷拍午夜视频| 石原莉奈一区二区三区在线观看 | 热久久国产精品| 国产日韩精品一区二区浪潮av| www.日韩精品| 午夜精品aaa| 精品粉嫩aⅴ一区二区三区四区| 丁香婷婷综合激情五月色| 综合av第一页| 欧美一级理论性理论a| 国产九色sp调教91| 亚洲精品综合在线| 这里只有精品电影| 国产精品456| 一区二区高清视频在线观看| 日韩一级精品视频在线观看| 高清久久久久久| 亚洲电影中文字幕在线观看| 国产午夜精品一区二区| 91久久免费观看| 国内精品嫩模私拍在线| 亚洲一区二区综合| 国产丝袜在线精品| 欧美日韩国产三级| 国产成人免费视频精品含羞草妖精| 亚洲乱码国产乱码精品精98午夜| 欧美大尺度电影在线| 91免费视频大全| 国产一区三区三区| 亚洲成av人片一区二区三区| 国产视频一区在线观看| 日韩一区二区三区av| 色婷婷av一区| 国产成人精品午夜视频免费 | 日韩欧美中文一区| 在线中文字幕不卡| 国产成人在线网站| 青娱乐精品视频在线| 亚洲免费大片在线观看| 国产香蕉久久精品综合网| 91精品欧美一区二区三区综合在| 91看片淫黄大片一级| 国产成人aaa| 精品无码三级在线观看视频 | 国产精品系列在线观看| 日韩精品三区四区| 亚洲图片自拍偷拍| 亚洲乱码国产乱码精品精可以看| 欧美激情一区二区三区蜜桃视频 | 国内不卡的二区三区中文字幕| 亚洲第一激情av| 亚洲综合无码一区二区| 亚洲欧美偷拍三级| 亚洲视频网在线直播| 国产精品久久久久影院色老大| 久久嫩草精品久久久精品| 欧美一区二区三区视频在线| 欧美视频在线观看一区二区| 一本到不卡精品视频在线观看| 成人黄色小视频| 成人午夜免费视频| caoporn国产一区二区| 成人久久久精品乱码一区二区三区| 久久成人久久爱| 国产专区综合网| 国产精品99久| 成人高清av在线| 91一区二区三区在线观看| 成人亚洲精品久久久久软件| 国产91精品一区二区麻豆网站| 国产精品一区在线观看乱码 | 欧美三级韩国三级日本一级| 欧美色涩在线第一页| 欧美日韩中文字幕一区| 欧美久久久久久久久| 欧美日韩不卡在线| 欧美一级二级三级蜜桃| 久久久久久麻豆| 国产欧美精品日韩区二区麻豆天美| 国产精品毛片大码女人| 一区二区在线免费观看| 亚洲成av人片在线| 经典三级在线一区| av一区二区三区四区| 在线观看亚洲精品视频| 欧美一区二区精品在线| 欧美精品一区二区三区很污很色的 | 国产亚洲短视频| 国产精品久久久久aaaa樱花| 亚洲一区在线电影| 久久精品国产一区二区三| 国产福利一区二区三区在线视频| 91麻豆精品秘密| 日韩一卡二卡三卡四卡| 国产精品视频一二| 午夜久久久久久久久| 国产在线不卡一区| 色偷偷成人一区二区三区91| 91精品欧美一区二区三区综合在| 国产偷国产偷精品高清尤物| 专区另类欧美日韩| 日本欧美一区二区三区| 国产成人亚洲综合a∨婷婷| 欧美视频一二三区| 国产精品污www在线观看| 三级欧美韩日大片在线看| 国产成人在线色| 欧美一区二区在线免费观看| 国产精品视频一二三区| 美女诱惑一区二区| 色婷婷亚洲综合| 久久综合丝袜日本网| 一区二区三区精密机械公司| 国产又黄又大久久| 欧美日本在线看| 国产精品嫩草99a| 免费观看30秒视频久久| 在线亚洲欧美专区二区| 国产欧美精品一区| 毛片av一区二区三区| 欧美中文字幕亚洲一区二区va在线| 欧美精品一区二区久久久| 亚洲国产sm捆绑调教视频| 成人高清伦理免费影院在线观看| 欧美电影免费观看高清完整版在 | 国产一区二区三区日韩 | 欧美亚洲动漫精品| 国产精品日产欧美久久久久| 麻豆91精品91久久久的内涵| 欧美三片在线视频观看| 亚洲久草在线视频| proumb性欧美在线观看| 国产欧美精品在线观看| 国产精品原创巨作av| 欧美成人猛片aaaaaaa| 亚洲国产aⅴ成人精品无吗| 91免费观看视频在线| 亚洲国产精品激情在线观看| 国产伦理精品不卡| 欧美变态tickling挠脚心| 亚洲成人免费视| 欧美日韩在线电影| 亚洲一区电影777| 欧美亚洲禁片免费| 亚洲一区二区三区四区五区黄 | 日韩视频一区二区三区在线播放 | 欧美一区二区三区喷汁尤物| 亚洲a一区二区|