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

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

?? pppasyncframing.c

?? 這是全套的PPP協議的源碼
?? C
?? 第 1 頁 / 共 3 頁
字號:
/* pppAsyncFraming.c - PPP Asynchronous HDLC Framing *//* Copyright 1999 Wind River Systems, Inc. */#include "copyright_wrs.h"/*modification history--------------------01w,07oct02,ijm increment bad address,bad control and packet too long counters,                SPR#8171301v,04oct02,ijm subscribe to PPP_LINK_RESET_EVENT, SPR# 8236901u,25jun02,rp  adding missed multilink patch 2 changes01t,28may02,rvr fixed build warnings 01s,01may02,as  avoided memcopy in the decompress_ppp_header to access the                 protocol id for arm fixes01r,17dec01,mk  added macros to correct alignment problems01q,16apr01,ijm corrected mBlkPktHdr settings01p,17dec00,ihw support checksum bytes across cluster boundaries on recvd frames01o,20nov00,ihw when looking at previous bytes for detecting occurences of             	duplicate escape sequences, mind cluster boundaries-Ian Willats01n,29sep00,sj  Merging in and reorganizing RFC2233 instrumentation01m,29sep00,sj  merging with TOR2_0-WINDNET_PPP-CUM_PATCH_201l,02aug00,adb  Merging in LAC modifications01k,01aug00,adb  Merging with openstack view except RFC 223301j,31jul00,md  initializes collectPppAttributesEvent01j,30jun00,md                  fix prototype error01i,29jun00,md  subscribed COLLECT_PPP_ATTRIBUTES_EVENT01h,17apr00,sj  use length of frame as size for decoded frame buffer01g,16mar00,cn  updated documentation.01f,07mar00,sj  use/generate mBuf chains on receive path01e,02mar00,sj  On the send path no ACCompression for LCP packets and get              	clusters on demand01d,23feb00,sj  Pedandic ANSI fixes01c,15feb00,cn  Modified send and receive routines to allow for chained		mBlks, also defaulted to 16-bit checksum in 		pppAsyncFramingStackDataConstruct ().01b,11nov99,sgv Modified to the latest framework01a,12sep99.sgv Derived from routerware PPP codebase*//*DESCRIPTIONThis component implements PPP Asynchronous HDLC framing as specified in RFC 1662. It resides in the framing layer of the framing plane.*/#include "vxWorks.h"#include "stdio.h"#include "stdlib.h"#include "string.h"#include "ctype.h"#include "memLib.h"#include "inetLib.h"#include "hostLib.h"#include "netBufLib.h"#include "ioLib.h"#include "logLib.h"#include "pfw/pfw.h"#include "pfw/pfwStack.h"#include "pfw/pfwComponent.h"#include "pfw/pfwTimer.h"#include "pfw/pfwLayer.h"#include "pfw/pfwEvent.h"#include "pfw/pfwInterface.h"#include "pfw/pfwMemory.h"#include "ppp/kppp.h"#include "ppp/pppLacStructures.h"#include "private/ppp/vpppstr.h"#include "ppp/pppAsyncFramingComponent.h"#include "ppp/interfaces/lcpInterfaces.h"#include "ppp/interfaces/pppInterfacesGroupInterfaces.h"#include "ppp/pppChecksum.h"/* defines */#define PPP_ALLSTATIONS 0xFF#define PPP_UI          0x03    /* Unnumbered Information */#define PPP_HDRLEN      4       /* sizeof(struct ppp_header) must be 4 *//* typedefs */typedef struct asyncFramingStackData    {    unsigned long localToPeerACCompression;    unsigned long peerToLocalACCompression;    unsigned long localToPeerProtocolCompression;    unsigned long peerToLocalProtocolCompression;    unsigned long localToPeerACCMap;    unsigned long peerToLocalACCMap;    unsigned  int localMru;    unsigned  int remoteMru;    unsigned  int transmitFcsSize;    unsigned  int receiveFcsSize;    BOOL          frameCheckSequenceEnabled;    NET_POOL_ID   netPoolId;    unsigned  int bytesSent;    unsigned  int bytesRcvd;    unsigned  int inputBytes;    unsigned  int inputErrors;    unsigned  int mru;    unsigned  int flags;    PFW_PLUGIN_OBJ_CALLBACKS    * callbacks;    PFW_EVENT_OBJ * lcpUpEvent;    PFW_EVENT_OBJ * pppLinkResetEvent;    PFW_INTERFACE_STATE_PAIR pppLinkStatusInterface;    PFW_INTERFACE_STATE_PAIR pppLinkCounterInterface;    PFW_EVENT_OBJ *collectPppAttributesEvent;    /* auxiliary variables aiding RFC 2233 counters's implementation */    int            pfwAuxIfId;    PFW_INTERFACE_STATE_PAIR pfwRFC2233CountPair;    BOOL           pfwRFC2233CountTest;    } ASYNC_FRAMING_STACK_DATA;typedef struct _PPP_HEADER    {    BYTE                             hdlc_address;    BYTE_ENUM (LLC_FRAME_TYPE)       hdlc_control;    USHORT_ENUM (PPP_PROTOCOL_TYPE)  protocol_type;    }_WRS_PACK_ALIGN(1) _PPP_HEADER;typedef struct _PPP_PACKET    {    _PPP_HEADER                   header;    BYTE_ENUM (PPP_CONTROL_CODE)  code;    BYTE                          id;    USHORT                        length;    BYTE                          data[VARIABLE_NUMBER_OF_BYTES];    }_WRS_PACK_ALIGN(1) _PPP_PACKET;#if     _BYTE_ORDER==_BIG_ENDIAN#define BIG_ENDIAN_CONSTANT(ushort) ushort#else   /* Little Endian */#define BIG_ENDIAN_CONSTANT(ushort) (((0x00ff & ushort) << 8) | (ushort >> 8))#endif  /* _BYTE_ORDER==_BIG_ENDIAN *//* defines */#define PARAMETER_NUMBER_SERIAL 1LOCAL STATUS pppAsyncFramingSend (PFW_PLUGIN_OBJ_STATE *, M_BLK_ID *);LOCAL STATUS pppAsyncFramingReceive (PFW_PLUGIN_OBJ_STATE *, M_BLK_ID *);LOCAL STATUS pppAsyncFramingStackAdd (PFW_PLUGIN_OBJ_STATE *, 	PFW_PLUGIN_OBJ_CALLBACKS * callbacks);LOCAL STATUS pppAsyncFramingStackDelete (PFW_PLUGIN_OBJ_STATE *);LOCAL BOOL encode_byte (ULONG *async_control_character_map, 	BYTE byte_to_encode);LOCAL STATUS convertNormalDataToAsynchronousData (PFW_PLUGIN_OBJ_STATE *state,						 M_BLK_ID srcPacket,						 M_BLK_ID destPacket);LOCAL STATUS convertAsynchronousDataToNormalData (PFW_PLUGIN_OBJ_STATE *state,						 M_BLK_ID inFrame,						 M_BLK_ID outPacket);LOCAL STATUS decompress_ppp_header (PFW_PLUGIN_OBJ_STATE *state,    	M_BLK_ID packet);LOCAL STATUS pppAsyncFramingStackDataConstruct (PFW_OBJ *,void * stackData,void * profileData);LOCAL STATUS pppAsyncFramingLcpUpEventHandler (PFW_PLUGIN_OBJ_STATE *, void *eventData); LOCAL STATUS pppAsyncFramingLinkResetEventHandler (PFW_PLUGIN_OBJ_STATE *, void *eventData);LOCAL STATUS AsyncFrameEventHandler    (    PFW_PLUGIN_OBJ_STATE * state,    void *eventData    );/******************************************************************************** pppAsyncFramingComponentCreate - create the asynchronous framing component ** This routine creates the asynchronous HDLC framing component plugin object* and adds it to the specified framework.** RETURNS: OK or ERROR*/STATUS pppAsyncFramingComponentCreate    (    PFW_OBJ *pfw    )    {    PFW_COMPONENT_OBJ *pAsyncFramingComponent;    pAsyncFramingComponent = (PFW_COMPONENT_OBJ *) pfwMalloc (pfw,                                                sizeof (PFW_COMPONENT_OBJ));    if (pAsyncFramingComponent == NULL)        {        printf ("pppAsyncFramingInit - Unable to allocate memory of size %d \		 bytes\n", (int) sizeof (PFW_COMPONENT_OBJ));        return (ERROR);        }    bzero ((void *)pAsyncFramingComponent, sizeof (PFW_COMPONENT_OBJ));    strcpy (pAsyncFramingComponent->pluginObj.name, "ASYNC_FRAMING");    pAsyncFramingComponent->pluginObj.pfwObj = pfw;    pAsyncFramingComponent->layerObj = pfwLayerObjGet (pfw, "FRAMING_LAYER");    pAsyncFramingComponent->pluginObj.profileDataSize =  0;    pAsyncFramingComponent->pluginObj.stackDataSize = 					sizeof (ASYNC_FRAMING_STACK_DATA);    pAsyncFramingComponent->protocol = 0;    pAsyncFramingComponent->pluginObj.profileDataConstruct  = NULL;    pAsyncFramingComponent->pluginObj.profileDataCopy = NULL;    pAsyncFramingComponent->pluginObj.profileDataDestruct = NULL;    pAsyncFramingComponent->pluginObj.receive = pppAsyncFramingReceive;    pAsyncFramingComponent->pluginObj.send = pppAsyncFramingSend;    pAsyncFramingComponent->pluginObj.stackAdd = pppAsyncFramingStackAdd;    pAsyncFramingComponent->pluginObj.stackDelete = pppAsyncFramingStackDelete;    pAsyncFramingComponent->pluginObj.stackDataConstruct = 				      pppAsyncFramingStackDataConstruct;    pAsyncFramingComponent->pluginObj.stackDataDestruct = NULL;    pAsyncFramingComponent->pluginObj.stackDataShow = NULL;    if (pfwComponentAdd (pAsyncFramingComponent) == ERROR)        {        printf("pppAsyncInit  Async Driver cannot be added to the framework\n");        return (ERROR);        }    return (OK);    }/********************************************************************************* pppAsyncFramingComponentDelete - delete the asynchronous framing component ** The asynchronous framing plug-in component object allocated by * pppAsyncFramingComponentCreate(), is freed if there are no references * to this object from a stack or profile object in the specified framework.** RETURNS: OK or ERROR*/STATUS pppAsyncFramingComponentDelete    (    PFW_OBJ *pfw    )    {    PFW_COMPONENT_OBJ *pComponent;    pComponent = pfwComponentObjGetByName (pfw, "ASYNC_FRAMING");    if (pComponent == NULL)        return ERROR;    if (pfwComponentDelete (pComponent) == OK)        {        pfwFree (pComponent);        return OK;        }    return (ERROR);    }/********************************************************************************* pppAsyncFramingStackDataConstruct - construct the stack data for the framework** RETURNS: OK or ERROR*/LOCAL STATUS pppAsyncFramingStackDataConstruct    (    PFW_OBJ * pfw,    void * stackData,    void * profileData    )    {    ASYNC_FRAMING_STACK_DATA *pStackData = 				(ASYNC_FRAMING_STACK_DATA *)stackData;    if ((pStackData->netPoolId = pfwNetPoolIdGet(pfw)) == NULL)        {        printf("Async Framing:MUST have a valid NetPoolId;See pfwCreate()\n");        return ERROR;        }        pStackData->collectPppAttributesEvent = NULL;    pStackData->localMru = 1500;    pStackData->remoteMru = 1500;    pStackData->flags = 0;    pStackData->inputBytes = 0;    pStackData->frameCheckSequenceEnabled  =  TRUE;    pStackData->localToPeerACCMap  = DEFAULT_ASYNC_CONTROL_CHARACTER_MAP;    pStackData->peerToLocalACCMap  = DEFAULT_ASYNC_CONTROL_CHARACTER_MAP;    /* Address control and protocol compression is disabled by default */    pStackData->localToPeerACCompression = FALSE;    pStackData->peerToLocalACCompression = FALSE;    pStackData->localToPeerProtocolCompression = FALSE;    pStackData->peerToLocalProtocolCompression = FALSE;    pStackData->transmitFcsSize = PPP_16BIT_FCS;    pStackData->receiveFcsSize = PPP_16BIT_FCS;    return (OK);    }/********************************************************************************* pppAsyncFramingStackAdd - add the stack data to the framework** RETURNS: OK or ERROR*/LOCAL STATUS pppAsyncFramingStackAdd    (    PFW_PLUGIN_OBJ_STATE *state,    PFW_PLUGIN_OBJ_CALLBACKS * callbacks    )    {    ASYNC_FRAMING_STACK_DATA *stackData = state->stackData;    int id;    stackData->callbacks = callbacks;    if (stackData->collectPppAttributesEvent == NULL)	{	if ((stackData->collectPppAttributesEvent =	    pfwEventObjGet(state->pluginObj->pfwObj,                           "COLLECT_PPP_ATTRIBUTES_EVENT")) != NULL)            {	    pfwEventStackSubscribe(state,stackData->collectPppAttributesEvent,                                   AsyncFrameEventHandler);	    }        }    /* get LCP UP event object and subcribe to it*/    if ((stackData->lcpUpEvent = 	    pfwEventObjGet(state->pluginObj->pfwObj,"LCP_UP_EVENT")) != NULL)	{	pfwEventStackSubscribe(state,stackData->lcpUpEvent, 			       pppAsyncFramingLcpUpEventHandler);	}    else	return ERROR;    /* get PPP LINK_RESET event object and subcribe to it*/    if ((stackData->pppLinkResetEvent =            pfwEventObjGet(state->pluginObj->pfwObj,"PPP_LINK_RESET_EVENT")) != NULL)        {        pfwEventStackSubscribe(state,stackData->pppLinkResetEvent,                               pppAsyncFramingLinkResetEventHandler);        }    else        return ERROR;    /* get LCP interfaces */    if ((id = pfwInterfaceIdGet(state->pluginObj->pfwObj,			"PPP_LINK_STATUS_ENTRY_INTERFACE")) > 0)	{	if (pfwInterfaceObjAndStateGetViaStackObj(state->stackObj,				id, &stackData->pppLinkStatusInterface) != OK)	    return ERROR;	}    else	return ERROR;    if ((id = pfwInterfaceIdGet(state->pluginObj->pfwObj,			"PPP_LINK_STATUS_COUNTER_INCREMENT_INTERFACE")) > 0)	{	if (pfwInterfaceObjAndStateGetViaStackObj(state->stackObj,				id, &stackData->pppLinkCounterInterface) != OK)	    return ERROR;	}    /* Get pfwRFC2233CountPair and set pfwRFC2233CountTest */    RFC2233_COUNT_PAIR_GET(state,                            stackData->pfwAuxIfId,                            stackData->pfwRFC2233CountPair, 			   stackData->pfwRFC2233CountTest);    /* Allocate a buffer for input processing */      if (stackData->callbacks && stackData->callbacks->stackAddComplete)        {        (*stackData->callbacks->stackAddComplete) (stackData->callbacks, state);	return OK;        }    else        return ERROR;    }/********************************************************************************* pppAsyncFramingStackDelete - delete the stack data from the framework** RETURNS: OK or ERROR*/LOCAL STATUS pppAsyncFramingStackDelete    (    PFW_PLUGIN_OBJ_STATE *state    )    {    ASYNC_FRAMING_STACK_DATA *stackData = state->stackData;    /* Delete the LCP LinkStatus Interface reference */    pfwInterfaceReferenceDelete (		stackData->pppLinkStatusInterface.interfaceObj);    /* Delete the LCP LinkCounter Interface reference */    pfwInterfaceReferenceDelete (		stackData->pppLinkCounterInterface.interfaceObj);    if (stackData->pfwRFC2233CountTest)       pfwInterfaceReferenceDelete(stackData->pfwRFC2233CountPair.interfaceObj);    if (stackData->callbacks && stackData->callbacks->stackDeleteComplete)        {        (*stackData->callbacks->stackDeleteComplete)                                    (stackData->callbacks , state);	return OK;        }    else        return ERROR;    }/********************************************************************************* pppAsyncFramingLcpUpEventHandler - handle LCP events** RETURNS: OK or ERROR*/LOCAL STATUS pppAsyncFramingLcpUpEventHandler    (    PFW_PLUGIN_OBJ_STATE * state,    void *eventData    )    {    PFW_PLUGIN_OBJ_STATE * lcpState = (PFW_PLUGIN_OBJ_STATE * )eventData;    ASYNC_FRAMING_STACK_DATA *stackData = state->stackData;    PPP_LINK_STATUS_ENTRY_INTERFACE * linkStatus = 		    (PPP_LINK_STATUS_ENTRY_INTERFACE *)				stackData->pppLinkStatusInterface.interfaceObj;    stackData->localMru = (*linkStatus->pppLinkStatusLocalMRUGet)(lcpState);    stackData->remoteMru = (*linkStatus->pppLinkStatusRemoteMRUGet)(lcpState);    stackData->localToPeerACCMap =		(*linkStatus->pppLinkStatusLocalToPeerACCMapGet)(lcpState);    stackData->peerToLocalACCMap = 		(*linkStatus->pppLinkStatusPeerToLocalACCMapGet)(lcpState);    stackData->localToPeerProtocolCompression =      (*linkStatus->pppLinkStatusLocalToRemoteProtocolCompressionGet)(lcpState);    stackData->peerToLocalProtocolCompression =       (*linkStatus->pppLinkStatusRemoteToLocalProtocolCompressionGet)(lcpState);    stackData->localToPeerACCompression = 	   (*linkStatus->pppLinkStatusLocalToRemoteACCompressionGet) (lcpState);    stackData->peerToLocalACCompression = 	    (*linkStatus->pppLinkStatusRemoteToLocalACCompressionGet)(lcpState);    stackData->transmitFcsSize = 		(*linkStatus->pppLinkStatusTransmitFcsSizeGet)(lcpState);    stackData->receiveFcsSize =		(*linkStatus->pppLinkStatusReceiveFcsSizeGet) (lcpState);

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
一色屋精品亚洲香蕉网站| 久久久国产综合精品女国产盗摄| 一区2区3区在线看| 欧美美女网站色| 国产成人精品免费网站| 国产精品欧美一级免费| 欧美专区在线观看一区| 麻豆免费看一区二区三区| 亚洲婷婷国产精品电影人久久| 色婷婷久久久综合中文字幕| 日本最新不卡在线| 一区二区三区久久久| 日韩一区欧美小说| 中文字幕的久久| 日韩午夜精品电影| www.亚洲激情.com| 国产麻豆一精品一av一免费| 蜜桃精品在线观看| 亚洲男女一区二区三区| 国产精品久久久久久久久免费樱桃 | 国产成人综合自拍| 日韩国产精品久久久久久亚洲| 亚洲色图欧美激情| 中文字幕成人网| 亚洲综合视频网| 精品制服美女丁香| 99视频精品全部免费在线| 在线中文字幕一区二区| 69p69国产精品| 国产日韩综合av| 91免费小视频| 秋霞午夜av一区二区三区| 成人av免费观看| 顶级嫩模精品视频在线看| 国产不卡视频在线播放| 日本美女一区二区三区视频| 欧美日韩国产首页| 日韩精品专区在线影院重磅| 亚洲高清免费观看高清完整版在线观看 | www久久精品| 国产精品国产三级国产| 一区二区三区色| 日韩国产在线一| www.亚洲在线| 日韩欧美中文字幕公布| 国产精品视频麻豆| 香蕉成人伊视频在线观看| 狠狠色狠狠色综合| 欧美日韩视频第一区| 2020国产精品久久精品美国| 亚洲美女屁股眼交3| 国产在线播放一区| 欧美精品在线一区二区| 亚洲国产精品精华液2区45| 午夜激情久久久| aaa欧美色吧激情视频| 精品国产成人在线影院| 色吊一区二区三区| 欧美日韩夫妻久久| 夜夜亚洲天天久久| 一本一道久久a久久精品综合蜜臀| 久久久久久久久久久久久久久99| 亚洲乱码中文字幕综合| 国产福利一区二区三区视频在线 | 亚洲六月丁香色婷婷综合久久 | 不卡高清视频专区| 精品国内二区三区| 日本特黄久久久高潮| 91精品国产综合久久精品 | 老色鬼精品视频在线观看播放| 不卡av在线网| 中文字幕欧美三区| 不卡一卡二卡三乱码免费网站| 国产欧美日韩在线看| 成人av网站在线| 中文字幕一区二区三区视频| jiyouzz国产精品久久| 午夜av一区二区| 久久久久久久久久久电影| 91网站在线观看视频| 麻豆91小视频| 亚洲蜜臀av乱码久久精品| 日韩女优av电影在线观看| 色一情一伦一子一伦一区| 亚洲国产精品欧美一二99| 在线亚洲一区二区| 精品写真视频在线观看| 1000部国产精品成人观看| 欧美最猛性xxxxx直播| 国产在线一区二区| 亚洲综合免费观看高清完整版| 日韩一区国产二区欧美三区| 国产精品一区二区久久不卡| 五月婷婷久久综合| 欧美自拍偷拍午夜视频| 国产成人自拍网| 日本aⅴ精品一区二区三区| 国产精品嫩草99a| 日韩三级高清在线| 欧美日韩一区二区在线观看视频| 精品一区二区三区免费| 国产成人在线影院 | 久久这里只有精品视频网| 欧美伦理视频网站| 欧美体内she精视频| 99久久综合狠狠综合久久| 国产精品1区2区| 国产suv精品一区二区883| 国产露脸91国语对白| 久久精品二区亚洲w码| 午夜欧美一区二区三区在线播放| 怡红院av一区二区三区| 亚洲欧洲av一区二区三区久久| 国产精品久久久一本精品| 欧美激情一区二区三区四区| 欧美国产精品专区| 中文字幕一区二区三区在线观看 | 色av成人天堂桃色av| 欧美色网站导航| 欧美日韩黄色影视| 日韩欧美国产精品| 国产午夜精品一区二区| ●精品国产综合乱码久久久久| 中文字幕中文在线不卡住| 青青草国产成人99久久| 精品一区二区三区香蕉蜜桃| 成人一区二区三区| 欧美日韩国产精品成人| 日韩女优av电影| 亚洲嫩草精品久久| 奇米影视一区二区三区小说| 国产一区91精品张津瑜| 99精品视频在线播放观看| 在线观看91av| 国产精品久久久久久久裸模 | 欧美日韩精品一区二区三区蜜桃| 欧美一二三在线| 一区二区视频在线| 国产精品自拍一区| 欧美日韩国产综合视频在线观看| 久久久激情视频| 日本aⅴ免费视频一区二区三区| av电影天堂一区二区在线观看| 91精品在线麻豆| 亚洲二区在线视频| 一本大道综合伊人精品热热| www日韩大片| 另类小说一区二区三区| 欧美日韩国产经典色站一区二区三区| 国产欧美va欧美不卡在线| 久久精品久久99精品久久| 亚洲欧美日韩国产一区二区三区| 毛片av一区二区| 欧美日韩在线播| 香蕉乱码成人久久天堂爱免费| 欧美写真视频网站| 亚洲第一在线综合网站| 欧美日韩黄色一区二区| 日韩中文字幕不卡| 日韩精品影音先锋| 国产在线精品一区二区| 2021国产精品久久精品| 国产精品亚洲专一区二区三区| 国产亚洲一区二区三区在线观看| 国内精品视频666| 国产欧美日韩中文久久| 色成年激情久久综合| 天天综合色天天| 欧美激情一区二区三区四区| 91在线视频观看| 日韩av高清在线观看| 久久亚区不卡日本| 在线观看日韩毛片| 国产伦精品一区二区三区免费迷 | 国产欧美精品一区| 欧美精品自拍偷拍| 97精品久久久午夜一区二区三区| 五月激情综合网| 国产精品麻豆视频| 日韩女优电影在线观看| 欧美在线|欧美| 99v久久综合狠狠综合久久| 国产综合久久久久久久久久久久| 亚洲欧美日韩国产手机在线| 久久综合久久鬼色中文字| 91精品国产色综合久久不卡电影 | 56国语精品自产拍在线观看| 99久久伊人网影院| 日韩 欧美一区二区三区| 亚洲国产精品久久久久婷婷884| 欧美国产激情一区二区三区蜜月 | 久久影院视频免费| 正在播放一区二区| 欧美日韩高清一区| 日韩一区二区在线看| 欧美成人a在线| 国产农村妇女毛片精品久久麻豆| 久久精品一级爱片| 国产精品视频第一区| 国产精品久久午夜夜伦鲁鲁|