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

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

?? tcp.c

?? 本程序?qū)崿F(xiàn)單片機(jī)控制以太網(wǎng)網(wǎng)卡進(jìn)行傳輸數(shù)據(jù)
?? C
?? 第 1 頁(yè) / 共 2 頁(yè)
字號(hào):
/*
 * Copyright (c) 2003 Electric Application Laboratory of NAN KAI University
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without modification,
 * are 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. The name of the author may not be used to endorse or promote products
 *    derived from this software without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS 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 AUTHOR 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.
 *
 * Author: Li Zhanglin <http://www.zlmcu.com>
 *
 */

#include "..\GloblDef\GloblDef.h"
#include "..\TCPIP\TCPIPmem.h"
#include "..\TCPIP\IP.h"
#include "..\TCPIP\Netif.h"
#include "..\TCPIP\TCP.h"

struct STCB DT_XDATA TCBPool[TCP_CONNECTION_MAX_NUM];
struct STCB DT_XDATA * DT_XDATA TCBFreeList;		/* free list */
struct STCB DT_XDATA * DT_XDATA TCBList;			/* tcb in use */

struct SPacketQueue DT_XDATA QPool[TCP_QUEUE_MAX_NUM];
struct SPacketQueue DT_XDATA * DT_XDATA QFreeList;

struct STCB DT_XDATA *TCPGetTCB() REENTRANT_SIG
{
	struct STCB DT_XDATA * pTCB;
	if((pTCB = TCBFreeList) != NULL)
	{
		TCBFreeList = TCBFreeList->pNext;
	}
	return pTCB;
}

void TCPInsertTCB(struct STCB DT_XDATA *pTCB) REENTRANT_SIG
{
	pTCB->pNext = TCBList;
	TCBList = pTCB;
}

struct SPacketQueue DT_XDATA * TCPGetQ() REENTRANT_SIG
{
	struct SPacketQueue DT_XDATA * pQ;
	if((pQ = QFreeList) != NULL)
	{
		QFreeList = QFreeList->pNext;
	}
	return pQ;
}

/* insert to the head of *ppQ. Q is a double link chain */
BOOL TCPInsertQ(struct SPacketQueue DT_XDATA * DT_XDATA * ppQ,struct SMemHead DT_XDATA *MemHead,
				DWORD Seq) REENTRANT_SIG
{
	struct SPacketQueue DT_XDATA *pNewQ;
	struct SPacketQueue DT_XDATA *pQ;

	/* allocate a queue to it */
	if((pNewQ = TCPGetQ()) == NULL)
		return FALSE;

	/* write content */
	pNewQ->Seq = Seq;
	pNewQ->MemHead = MemHead;

	/* 
	 * link in the queue 
	 */

	/* if is a empty queue */
	if(*ppQ == NULL)
	{
		*ppQ = pNewQ;

		/* pNext pPre point to itself when no others in queue */
		pNewQ->pNext = pNewQ;
		pNewQ->pPre  = pNewQ;
	}
	else
	{
		pQ = *ppQ;

		/* pNext link */
		pNewQ->pNext = pQ->pNext;
		pQ->pNext    = pNewQ;

		/* pPre link */
		pNewQ->pNext->pPre	= pNewQ;
		pNewQ->pPre			= pQ;
	}
	return TRUE;
}

/* move the last unit in queue outof queue,if the queue
is empty return FALSE.actrually last unit is *ppQ */
struct SPacketQueue DT_XDATA * TCPOutQ(struct SPacketQueue DT_XDATA * DT_XDATA * ppQ) REENTRANT_SIG
{
	struct SPacketQueue DT_XDATA *pQ;

	/* a empty queue? */
	if((pQ = *ppQ) == NULL)
		return NULL;

	/* after remove it, the queue is empty? */
	if(pQ->pNext == pQ)
		*ppQ = NULL;
	else
	{
		/* relink */
		pQ->pPre->pNext = pQ->pNext;
		pQ->pNext->pPre = pQ->pPre;

		/* and the queue head *ppQ point to pQ->pPre */
		*ppQ = pQ->pPre;
	}
	
	/* relaim it. link to QFreeList */
	pQ->pNext = QFreeList;
	QFreeList = pQ;
	return pQ;
}

void TCPInit() REENTRANT_MUL
{
	WORD i;

	/* move TCBPool to TCBFreeList */
	for(i = 0, TCBFreeList = NULL; i<TCP_CONNECTION_MAX_NUM; i++)
	{
		TCBPool[i].pNext = TCBFreeList;
		TCBFreeList = &TCBPool[i];
	}

	/* move QPool to QFreeList */
	for(i = 0, QFreeList = NULL; i<TCP_QUEUE_MAX_NUM; i++)
	{
		QPool[i].pNext = QFreeList;
		QFreeList = &QPool[i];
	}

	TCBList = NULL;
}

		
/* tcp check sum. return check sum. TCPSize = TCPDataSize + TCPHeadSize*/
WORD TCPCheckSum(struct SIPHead DT_XDATA * pIPHead,WORD TCPSize) REENTRANT_SIG
{
	DWORD sum = 0;
	WORD DT_XDATA * p;
	BYTE i;

	/* clac pseudo-header CheckSum. pseudo-header is:
	   source ip, destination ip, pad 8 bits, protocol, TCP lendth */
	sum = 0;

	/* source ip and dest ip */
	p = (WORD DT_XDATA *)(&(pIPHead->IPScr));
	for(i=0; i < sizeof(DWORD)/sizeof(WORD)*2; i++,p++)
		sum += *p;
	
	/* pad 8 and protocol */
	sum += pIPHead->Protocol;

	/* tcp lendth */
	sum += TCPSize;

	return CheckSum((WORD DT_XDATA *)((BYTE DT_XDATA *)pIPHead + IP_HEAD_MIN_LEN),TCPSize,sum);
}

/* this funtion should be called periodically */
void TCPTimer() REENTRANT_MUL
{
	struct STCB DT_XDATA *pTCB;

	/* go through all tcbs to see if any time out */
	for(pTCB = TCBList; pTCB != NULL; pTCB = pTCB->pNext)
	{
		/* delayed ack need send now? */
		if(pTCB->bNeedAck == TRUE)
		{
			if(pTCB->DelayAckTimer == 0)
			{
				/* send a ack. bNeedAck will set FLASE in TCPOutput*/
				TCPSendSeg(pTCB,TCPAllocate(0),TCP_ACK);
			}
			else
				pTCB->DelayAckTimer--;
		}

		/* TCP_STATE_LASTACK TCP_STATE_TIMEWAIT state time out? */
		if(pTCB->TCPState == TCP_STATE_LASTACK ||
			pTCB->TCPState == TCP_STATE_TIMEWAIT)
		{
			if(pTCB->LastAckTimer == 0)
			{
				pTCB->TCPState = TCP_STATE_CLOSED;

				/* release buf queue and call user close */
				TCPRelease(pTCB);
				/* let pTCB->close(); to be call when they send a fin when we at established */
			}
			else
				pTCB->LastAckTimer--;
		}

		/* if retransmit timer out? */
		if(pTCB->QUnacked != NULL)
		{
			if(pTCB->RetranTimer == 0)
			{
				/* retransmit,pStart set to tcpdata */
				IPOutput(pTCB->QUnacked->MemHead);

				/* timer restart and retransmit times inc */
				if(pTCB->RetranTimes == TCP_RETRAN_MAX_TIME)
				{
					pTCB->TCPState = TCP_STATE_CLOSED;

					/* closed by countpart shut down */
					TCPRelease(pTCB);
				}
				else
				{
					pTCB->RetranTimes++;
					pTCB->RetranTimer = TCP_RETRAN_TIME_OUT;
				}
			}
			else
				pTCB->RetranTimer--;
		}
	}
}
/* when a TCP close, send too much packet but no replay, 
connection fail. TCPIP will call TCPRelease to release packet
and queue, but will not reclaim TCB. in other word user
can use this socket again. */
void TCPRelease(struct STCB DT_XDATA *pTCB) REENTRANT_SIG
{
	struct SPacketQueue DT_XDATA *pQ;

	/* reclaim Q, and free packet in queue */
	while(pQ = TCPOutQ(&(pTCB->QExceedSeq)))
		MemFree(pQ->MemHead);
	while(pQ = TCPOutQ(&(pTCB->QUnacked)))
		MemFree(pQ->MemHead);
	while(pQ = TCPOutQ(&(pTCB->QUnSend)))
		MemFree(pQ->MemHead);
}

/* fill a segment and send it,NOTE MemHead->pStart point to TCPData */
BOOL TCPSendSeg(struct STCB DT_XDATA *pTCB,struct SMemHead DT_XDATA *MemHead,BYTE TCPFlag) REENTRANT_SIG
{
	struct STCPHead DT_XDATA 	*pTCPHead;
	struct SIPHead  DT_XDATA 	*pIPHead;
	WORD SeqInc;

	/* mem insufficient? */
	if(MemHead == NULL)
		return FALSE;

	/* SeqMine increasment */
	if((TCPFlag & TCP_SYN) || (TCPFlag & TCP_FIN))
	{
		SeqInc = MemHead->pEnd - MemHead->pStart + 1;
	}
	else
	{
		SeqInc = MemHead->pEnd - MemHead->pStart;
	}

	pTCPHead = (struct STCPHead DT_XDATA *)(MemHead->pStart - sizeof(struct STCPHead));
	
	/* fill tcp header */
	pTCPHead->PortDest		= pTCB->PortDest;
	pTCPHead->PortScr		= pTCB->PortScr;
	pTCPHead->Seq			= htonl(pTCB->SeqMine);
	pTCPHead->AckSeq		= htonl(pTCB->SeqHis);
	pTCPHead->TCPHeadLen	= (BYTE)(((BYTE)sizeof(struct STCPHead)/4)<<4);
	pTCPHead->flag			= TCPFlag;
	pTCPHead->WndSize		= htons(pTCB->WndMine = MemFreeSize());
	pTCPHead->CheckSum		= 0;
	pTCPHead->UrgentPoint	= 0;
	
	/* fill some of IPHead. it will be used to calculate TCPChecksum
	and as augument passed to IPlayer */
	pIPHead = (struct SIPHead DT_XDATA *)((BYTE DT_XDATA *)pTCPHead - IP_HEAD_MIN_LEN);
	pIPHead->IPDest					= pTCB->IPDest;
	pIPHead->IPScr					= pTCB->IPScr;
	pIPHead->Protocol				= IP_PROTOCOL_TCP;
	pIPHead->TotalLen				= htons(MemHead->pEnd - 
		MemHead->pStart + TCP_HEAD_MIN_LEN + IP_HEAD_MIN_LEN);	/* pStart point to TCP data */
	pTCPHead->CheckSum = htons(TCPCheckSum(pIPHead,MemHead->pEnd - MemHead->pStart + TCP_HEAD_MIN_LEN));
		
	/* send packet */
	MemHead->pStart = (BYTE DT_XDATA *)pIPHead;	/* dec pStart */
	IPOutput(MemHead);
	
	/*
	 * renew tcb 
	 */
	/* no ack need. because this packet will give a ack to him */
	pTCB->bNeedAck = FALSE;	

	pTCB->SeqMine += SeqInc;

	/* if this packet contant data or is a FIN or SYN packet
	we write it to unacked queue */
	if(SeqInc != 0)
	{
		/* if the unacked queue is empty, start timer for this packet */
		if(pTCB->QUnacked == NULL)
		{
			pTCB->RetranTimer = TCP_RETRAN_TIME_OUT;
			pTCB->RetranTimes = 0;
		}

		TCPInsertQ(&(pTCB->QUnacked),MemHead,htonl(pTCPHead->Seq));
	}
	else
	{
		MemFree(MemHead);
	}
	return TRUE;
}

/* judge his wnd if he can receive this packet. send call TCPSendSeg.
only send this seg completely return TRUE*/
BOOL TCPSendSegJudgeWnd(struct STCB DT_XDATA *pTCB,struct SMemHead DT_XDATA *MemHead) REENTRANT_MUL
{
	struct SMemHead DT_XDATA *NewMemHead;
	
	/* if WndHis is large enough to receive this packet send it.
	otherwise create a new packet and send part of Data. the remain
	going to transmit when WndHis refresh at TCPInput */
	if(MemHead->pEnd - MemHead->pStart > pTCB->WndHis)
	{
		/* part of Data need send */
		if(pTCB->WndHis > 0)
		{
			/* create a new MemHead */
			if((NewMemHead = TCPAllocate(pTCB->WndHis)) == NULL)
				return FALSE;
	
			/* copy part of data to new MemHead */
			MemCopy(NewMemHead->pStart,MemHead->pStart,pTCB->WndHis);

			/* delete this part from old MemHead */
			MemHead->pStart += pTCB->WndHis;

			/* send the NewMemHead */
			TCPSendSeg(pTCB,NewMemHead,TCP_ACK);

			return FALSE;
		}
		else
		{
			/* can't send any data now */
			return FALSE;
		}
	}
	else
	{
		TCPSendSeg(pTCB,MemHead,TCP_ACK);
		return TRUE;
	}
}

/* send seg in unsend queue untill can't send any more. if send all
seg in queue return true */
BOOL TCPSendUnsendQ(struct STCB DT_XDATA *pTCB) REENTRANT_MUL
{
	/* send every packet in unsend queue if can */
	for(;pTCB->QUnSend != NULL;)
	{
		/* send it completely? */
		if(TCPSendSegJudgeWnd(pTCB,pTCB->QUnSend->MemHead) == TRUE)
		{
			/* delete it from unsend queue */
			TCPOutQ(&(pTCB->QUnSend));
		}
		else
		{
			/* only part of the seg is send */
			return FALSE;
		}
	}
	return TRUE;
}

/* call by TCPInput after judge this packet can be received.NOTE:MemHead-pStart point 
to TCP head. TCPHead byte order is change in TCPInput */
void TCPRecvSeg(struct STCB DT_XDATA *pTCB,struct SMemHead DT_XDATA *MemHead) REENTRANT_SIG
{
	WORD TCPDataSize;
	struct STCB DT_XDATA *pNewTCB;
	struct SIPHead  DT_XDATA *pIPHead;
	struct STCPHead DT_XDATA *pTCPHead;

	pTCPHead = (struct STCPHead DT_XDATA *)(MemHead->pStart );
	pIPHead	 = (struct SIPHead  DT_XDATA *)(MemHead->pStart - IP_HEAD_MIN_LEN);

	/*
	 * begain renew tcb values
	 */

	/* dest windows size renew.*/
	pTCB->WndHis = pTCPHead->WndSize;

	/* after dest windows renew is it possible to send a packet in unsend queue now ?*/
	TCPSendUnsendQ(pTCB);
		
	/* His Sequence renew */
	TCPDataSize = ntohs(pIPHead->TotalLen) - IP_HEAD_MIN_LEN 
		- TCP_HEAD_LEN(pTCPHead);
	if((pTCPHead->flag & TCP_SYN)  || (pTCPHead->flag & TCP_FIN))
	{
		pTCB->SeqHis += TCPDataSize + 1;
	}
	else
	{
		pTCB->SeqHis += TCPDataSize;
	}

	/* NeedAck? */
	if(TCPDataSize != 0)
	{
		pTCB->bNeedAck = TRUE;
		pTCB->DelayAckTimer = TCP_DELAY_ACK_TIME_OUT;
	}
	
	/* if This packet acked packet in unacked queue */
	if((pTCPHead->flag & TCP_ACK) != 0)
	{	
		while(pTCB->QUnacked != NULL &&
			TCP_SEQ_COMPARE(pTCB->QUnacked->Seq,pTCPHead->AckSeq) < 0)
		{
			MemFree(pTCB->QUnacked->MemHead); 
			TCPOutQ(&(pTCB->QUnacked));	
			
			/* timer for retran restore */
			pTCB->RetranTimer = TCP_RETRAN_TIME_OUT;
			pTCB->RetranTimes = 0;
		}
	}
	
	/*
	 * deal refer to tcb.state and tcp flag
	 */
	switch(pTCB->TCPState)
	{
	case TCP_STATE_CLOSED:
		break;
	case TCP_STATE_LISTEN:
		/* syn: to TCP_STATE_SYNSENT, send syn+ack */
		if(pTCPHead->flag == TCP_SYN)
		{
			/* create a new tcb and it is going to deal with 
			this connection. */
			if((pNewTCB = TCPSocket(htonl(pTCB->IPScr))) == NULL)
			{
				MemFree(MemHead);

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲一二三级电影| 久久免费电影网| 精品日韩欧美在线| 国产亚洲短视频| 一区二区三区四区五区视频在线观看 | 精品久久久久久久久久久久久久久| 久久人人超碰精品| 一区二区三区精品视频在线| 裸体一区二区三区| www.欧美.com| 欧美一区二区三区小说| 国产精品国产三级国产三级人妇| 亚洲va韩国va欧美va| 国产一区在线不卡| 欧美日韩综合色| 国产欧美一区二区精品久导航| 亚洲国产毛片aaaaa无费看| 国产精品原创巨作av| 欧美日韩一区二区三区四区五区| 久久久久久亚洲综合| 亚洲h精品动漫在线观看| 国产不卡视频在线观看| 欧美日韩久久一区二区| 国产精品久久久久久久久免费樱桃 | 国产在线不卡一区| 色综合中文综合网| 51精品秘密在线观看| 国产精品无人区| 免费成人av资源网| 91亚洲精品久久久蜜桃网站 | 国产精品1区二区.| 91精品国产综合久久蜜臀| 日韩理论电影院| 国产原创一区二区| 91麻豆精品国产91久久久久久| 综合久久久久久| 国产成人精品免费一区二区| 日韩欧美你懂的| 亚洲www啪成人一区二区麻豆| 高清久久久久久| 欧美tickling网站挠脚心| 亚洲福利视频三区| 色综合视频一区二区三区高清| 国产日韩三级在线| 激情欧美日韩一区二区| 69精品人人人人| 亚洲一区二区三区四区不卡| jvid福利写真一区二区三区| 国产丝袜在线精品| 国产一区二区视频在线| 精品日韩欧美一区二区| 日本欧美一区二区| 91精品午夜视频| 亚洲成人av一区二区三区| 色成人在线视频| 亚洲色图都市小说| av不卡免费电影| 国产精品女同一区二区三区| 韩日av一区二区| 精品美女一区二区| 美国精品在线观看| 欧美一区二区二区| 日本怡春院一区二区| 欧美妇女性影城| 肉色丝袜一区二区| 欧美精品久久99| 日产国产高清一区二区三区| 欧美一级艳片视频免费观看| 日韩和欧美的一区| 欧美一区二区性放荡片| 亚洲成人午夜电影| 5858s免费视频成人| 美女一区二区三区| 日韩久久免费av| 激情综合网激情| 久久这里都是精品| 国产成人免费视频精品含羞草妖精| 久久亚洲私人国产精品va媚药| 国产精品1024| 成人欧美一区二区三区白人 | 欧美极品少妇xxxxⅹ高跟鞋| 国产麻豆视频精品| 国产精品视频线看| 91浏览器打开| 一区2区3区在线看| 欧美色大人视频| 日本不卡视频一二三区| 欧美不卡一区二区三区| 国产麻豆成人传媒免费观看| 国产午夜亚洲精品不卡| 99久久久无码国产精品| 亚洲精品国产第一综合99久久| 欧美偷拍一区二区| 免费在线视频一区| 国产亚洲欧美中文| 91蜜桃婷婷狠狠久久综合9色| 夜夜嗨av一区二区三区| 日韩欧美国产麻豆| 国产激情一区二区三区| 亚洲人成7777| 欧美一二三区精品| 风流少妇一区二区| 亚洲精品高清在线| 欧美日韩国产综合一区二区三区| 免费亚洲电影在线| 日本一区二区免费在线观看视频| 91在线看国产| 青青草国产精品97视觉盛宴| 久久精品欧美日韩精品| 欧美亚洲禁片免费| 国产在线精品视频| 亚洲美腿欧美偷拍| 精品国免费一区二区三区| 不卡大黄网站免费看| 香蕉成人伊视频在线观看| 26uuu亚洲综合色| 色综合久久久久综合| 狠狠网亚洲精品| 亚洲三级电影网站| 日韩视频在线你懂得| av一区二区不卡| 奇米一区二区三区av| 亚洲天堂免费在线观看视频| 欧美一区二区三区成人| av午夜一区麻豆| 麻豆免费精品视频| 亚洲欧美激情在线| 欧美成人精品3d动漫h| 欧美性高清videossexo| 国产一区二区不卡| 亚洲综合成人在线视频| 久久久精品免费免费| 欧美日韩电影在线| 成人高清免费在线播放| 久久国产夜色精品鲁鲁99| 一区二区三区在线观看视频| 欧美va亚洲va在线观看蝴蝶网| 在线观看成人小视频| 成人综合日日夜夜| 久久精品噜噜噜成人av农村| 一区二区不卡在线播放 | 91玉足脚交白嫩脚丫在线播放| 久久精品国产精品青草| 亚洲一区精品在线| 国产精品欧美极品| 亚洲精品在线三区| 91精品国产综合久久精品性色| 91美女视频网站| 国产成人无遮挡在线视频| 美女脱光内衣内裤视频久久网站| 亚洲一区二区三区小说| 国产精品久久久久aaaa樱花 | 国产寡妇亲子伦一区二区| 日日夜夜免费精品视频| 亚洲精品你懂的| 国产精品久久久久永久免费观看 | 菠萝蜜视频在线观看一区| 精品午夜久久福利影院| 亚洲不卡在线观看| 亚洲综合色丁香婷婷六月图片| 亚洲欧洲三级电影| 国产亚洲1区2区3区| 久久亚洲综合av| 日韩精品一区国产麻豆| 欧美一级片在线看| 欧美在线观看视频一区二区| 99亚偷拍自图区亚洲| av电影在线观看完整版一区二区| 国产suv精品一区二区三区| 国产真实精品久久二三区| 六月丁香婷婷久久| 青青草一区二区三区| 免费的国产精品| 奇米一区二区三区av| 久久精品国产77777蜜臀| 奇米色777欧美一区二区| 免费在线看成人av| 美女性感视频久久| 九九精品视频在线看| 美女一区二区三区| 激情综合网天天干| 国产99久久久国产精品潘金网站| 国产一区高清在线| 高清不卡一区二区| 成人涩涩免费视频| 99久久99久久精品免费看蜜桃| 91在线精品一区二区三区| 99久久婷婷国产综合精品电影| 99久久亚洲一区二区三区青草| 91年精品国产| 欧美日韩激情一区二区三区| 欧美放荡的少妇| 精品国产电影一区二区| 久久久综合视频| 亚洲欧洲日韩一区二区三区| 亚洲精品视频自拍| 亚洲18色成人| 免费在线看成人av| 国产激情视频一区二区三区欧美| av在线不卡观看免费观看|