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

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

?? zl5011xpacketrx.c

?? Zalink50114----TDMoIP芯片驅動源碼
?? C
?? 第 1 頁 / 共 5 頁
字號:
      }

      /* If the VLAN ID is to be classified on, then setup the fields */
      if (templateInUse->vlanClassifyPos[0] < ZL5011X_PKC_CLASSIFY_NUM_MATCH_FIELDS)
      {
         lanRxSetProtocolMatch->output.extractClassifyBytes[templateInUse->vlanClassifyPos[0]] =
               ZL5011X_MAC_SIZE + ZL5011X_MAC_SIZE + ZL5011X_PKT_ETHERTYPE_LEN;
      }

      if (templateInUse->vlanClassifyPos[1] < ZL5011X_PKC_CLASSIFY_NUM_MATCH_FIELDS)
      {
         lanRxSetProtocolMatch->output.extractClassifyBytes[templateInUse->vlanClassifyPos[1]] =
               ZL5011X_MAC_SIZE + ZL5011X_MAC_SIZE + ZL5011X_PKT_ETHERTYPE_LEN + 1;
      }
   }

   /* If the protocol stack to be supported includes L2TPv3 and there is to be
      a cookie then some more check fields will need to be added */
   if (cookieOffset != 0)
   {
      /* Work out the position of the cookie - allowing for the fact that the SNAP header
         is removed internally by the device */
      cookiePos = l2tpHeaderPos - snapOffset + ZL5011X_PKT_L2TPV3_HDR_LEN;

      /* Allow checking on each byte of the cookie individually. Any bytes that aren't to be checked are set to an invalid
         number like 0xff in the template. */
      for (n = 0; n < ZL5011X_PKT_L2TPV3_COOKIE_LEN; n++)
      {
         if (templateInUse->l2tpCookieCheckPos[n] < ZL5011X_PKC_CLASSIFY_NUM_CHECK_FIELDS)
         {
            lanRxSetProtocolMatch->output.extractCheckBytes[templateInUse->l2tpCookieCheckPos[n]] = (Uint8T)(cookiePos + n);
            lanRxSetProtocolMatch->output.checkMask[templateInUse->l2tpCookieCheckPos[n]] = ZL5011X_MASK_IN;
         }
      }
   }

   /* If the protocol stack to be supported includes CD fields then the CD portion of the header needs to be setup
      in the classifier, but only if the template contains good values for the index of the extract to classifier bytes. */
   if ((par->protocolType == ZL5011X_CD) || (par->protocolType == ZL5011X_IP_CD) ||
      (par->protocolType == ZL5011X_IP_UDP_CD))
   {
      /* If the relevant structure members have not been setup or are otherwise invalid,
         assume that the CD header exists in the last two bytes of the header */
      if (par->contextDescriptorOffset > (Uint8T)(par->headerLength - ZL5011X_PKT_CD_HDR_LEN))
      {
         par->contextDescriptorOffset = par->headerLength - ZL5011X_PKT_CD_HDR_LEN;
      }

      if (templateInUse->cdClassifyPos[0] < ZL5011X_PKC_CLASSIFY_NUM_MATCH_FIELDS)
      {
         lanRxSetProtocolMatch->output.extractClassifyBytes[templateInUse->cdClassifyPos[0]] = (Uint8T)(par->contextDescriptorOffset - snapOffset);
      }

      if (templateInUse->cdClassifyPos[1] < ZL5011X_PKC_CLASSIFY_NUM_MATCH_FIELDS)
      {
         lanRxSetProtocolMatch->output.extractClassifyBytes[templateInUse->cdClassifyPos[1]] = (Uint8T)(par->contextDescriptorOffset - snapOffset + 1);
      }

      /* now that we have worked out where the CD header is, update the field
         in the protocol match itself */
      if (par->protocolType == ZL5011X_IP_UDP_CD)
      {
         lanRxSetProtocolMatch->match.protocolMatchBytes[lanRxSetProtocolMatch->output.extractClassifyBytes[templateInUse->cdClassifyPos[0]]] = ZL5011X_PKT_CD_TYPE_UDP << (ZL5011X_PKT_CD_TYPE_POS - 8);
      }
      else
      {
         lanRxSetProtocolMatch->match.protocolMatchBytes[lanRxSetProtocolMatch->output.extractClassifyBytes[templateInUse->cdClassifyPos[0]]] = ZL5011X_PKT_CD_TYPE_STD << (ZL5011X_PKT_CD_TYPE_POS - 8);
      }
   }

   if (par->enableClassificationChecks == ZL5011X_FALSE)
   {
      for (n = 0; n < ZL5011X_PKC_CLASSIFY_NUM_CHECK_FIELDS; n++)
      {
         /* disable classification checks by setting the mask fields */
         lanRxSetProtocolMatch->output.checkMask[n] = ZL5011X_MASK_OUT;
      }
   }

   status = zl5011xLanRxSetProtocolMatch(zl5011xParams,lanRxSetProtocolMatch);

   if (status != ZL5011X_OK)
   {
      OS_FREE(lanRxSetProtocolMatch);
      return(status);
   }

   /* Record the protocol match number which this was set up into for the packet rx structure and for the device structure */
   par->protocolMatchNumber = lanRxSetProtocolMatch->matchNum;

   /* record the protocol type in the device structure - useful for debugging */
   zl5011xParams->packetIf.packetRx.pkcProtocol[lanRxSetProtocolMatch->matchNum].protocolType = par->protocolType;

   /* There are various exceptions and exclusions between the similar protocol types,
      so deal with that now */
   switch (par->protocolType)
   {
      case ZL5011X_CD:
      case ZL5011X_PW:
      case ZL5011X_IP_PW_TS:
      case ZL5011X_MPLS_MPLS_PW:
      case ZL5011X_CUSTOM8_PW :
      case ZL5011X_CUSTOM8_RTP_PW :
      case ZL5011X_CUSTOM8_PW_RTP :
         /* no restrictions on use of these protocols, so just put an entry in the table */
         Zl5011xProtocolTable[deviceIndex].protocol[par->protocolType].matchNum[par->enableVlan][par->ipVer4] = lanRxSetProtocolMatch->matchNum;
         break;

      case ZL5011X_IP_L2TPV3_PW:
      case ZL5011X_IP_L2TPV3_CTRL:
         /* IP->L2TP cannot coexist with IP->L2TP->RTP so mark the RTP ones as unusable */
         Zl5011xProtocolTable[deviceIndex].protocol[par->protocolType].matchNum[par->enableVlan][par->ipVer4]         = lanRxSetProtocolMatch->matchNum;
         Zl5011xProtocolTable[deviceIndex].protocol[ZL5011X_IP_L2TPV3_RTP_PW].matchNum[par->enableVlan][par->ipVer4]    = ZL5011X_PKT_INCOMPATIBLE_HEADER;
         Zl5011xProtocolTable[deviceIndex].protocol[ZL5011X_IP_L2TPV3_RTCP_CTRL].matchNum[par->enableVlan][par->ipVer4] = ZL5011X_PKT_INCOMPATIBLE_HEADER;
         break;

      case ZL5011X_IP_L2TPV3_RTP_PW:
      case ZL5011X_IP_L2TPV3_RTCP_CTRL:
         /* IP->L2TP cannot coexist with IP->L2TP->RTP so mark the non-RTP ones as unusable */
         Zl5011xProtocolTable[deviceIndex].protocol[par->protocolType].matchNum[par->enableVlan][par->ipVer4]    = lanRxSetProtocolMatch->matchNum;
         Zl5011xProtocolTable[deviceIndex].protocol[ZL5011X_IP_L2TPV3_PW].matchNum[par->enableVlan][par->ipVer4]   = ZL5011X_PKT_INCOMPATIBLE_HEADER;
         Zl5011xProtocolTable[deviceIndex].protocol[ZL5011X_IP_L2TPV3_CTRL].matchNum[par->enableVlan][par->ipVer4] = ZL5011X_PKT_INCOMPATIBLE_HEADER;
         break;

      case ZL5011X_MPLS_PW_RTP:
      case ZL5011X_MPLS_RTCP_CTRL:
         Zl5011xProtocolTable[deviceIndex].protocol[ZL5011X_MPLS_PW_RTP].matchNum[par->enableVlan][par->ipVer4]    = lanRxSetProtocolMatch->matchNum;
         Zl5011xProtocolTable[deviceIndex].protocol[ZL5011X_MPLS_RTCP_CTRL].matchNum[par->enableVlan][par->ipVer4] = lanRxSetProtocolMatch->matchNum;

         /* MPLS uses a common protocol match for the various different header options.
            However, if the RTP sequence number is used for ZL5011X_MPLS_PW_RTP then this breaks the rule
            and the other protocols become invalid */
         if (par->rtpForceSeqNumber == ZL5011X_TRUE)
         {
            /* using the RTP sequence number means that this protocol match is now incompatible
               with the other MPLS stacks */
            Zl5011xProtocolTable[deviceIndex].protocol[ZL5011X_MPLS].matchNum[par->enableVlan][par->ipVer4]           = ZL5011X_PKT_INCOMPATIBLE_HEADER;
            Zl5011xProtocolTable[deviceIndex].protocol[ZL5011X_MPLS_PW].matchNum[par->enableVlan][par->ipVer4]        = ZL5011X_PKT_INCOMPATIBLE_HEADER;
         }
         else
         {
         {
            /* all of the MPLS protocols can co-exist, so mark them in the IPv4
               part of the device table */
            Zl5011xProtocolTable[deviceIndex].protocol[ZL5011X_MPLS].matchNum[par->enableVlan][par->ipVer4]           = lanRxSetProtocolMatch->matchNum;
            Zl5011xProtocolTable[deviceIndex].protocol[ZL5011X_MPLS_PW].matchNum[par->enableVlan][par->ipVer4]        = lanRxSetProtocolMatch->matchNum;
         }
         }
         break;

      case ZL5011X_MPLS:
      case ZL5011X_MPLS_PW:
         /* all of the MPLS protocols can co-exist, so mark them in the IPv4
            part of the device table */
         Zl5011xProtocolTable[deviceIndex].protocol[ZL5011X_MPLS].matchNum[par->enableVlan][par->ipVer4]           = lanRxSetProtocolMatch->matchNum;
         Zl5011xProtocolTable[deviceIndex].protocol[ZL5011X_MPLS_PW].matchNum[par->enableVlan][par->ipVer4]        = lanRxSetProtocolMatch->matchNum;
         Zl5011xProtocolTable[deviceIndex].protocol[ZL5011X_MPLS_PW_RTP].matchNum[par->enableVlan][par->ipVer4]    = lanRxSetProtocolMatch->matchNum;
         Zl5011xProtocolTable[deviceIndex].protocol[ZL5011X_MPLS_RTCP_CTRL].matchNum[par->enableVlan][par->ipVer4] = lanRxSetProtocolMatch->matchNum;

         /* the RTP sequence number variable was irrelevant to this mode, but set it to FALSE,
            to represent how the protocol was configured. */
         par->rtpForceSeqNumber = ZL5011X_FALSE;
         break;

      case ZL5011X_IP_UDP:
         /* IP->UDP cannot co-exist with any other IP->UDP->?? header, so mark
            all others as unavailable */
         Zl5011xProtocolTable[deviceIndex].protocol[ZL5011X_IP_UDP].matchNum[par->enableVlan][par->ipVer4]             = lanRxSetProtocolMatch->matchNum;
         Zl5011xProtocolTable[deviceIndex].protocol[ZL5011X_IP_UDP_PW].matchNum[par->enableVlan][par->ipVer4]          = ZL5011X_PKT_INCOMPATIBLE_HEADER;
         Zl5011xProtocolTable[deviceIndex].protocol[ZL5011X_IP_UDP_CD].matchNum[par->enableVlan][par->ipVer4]          = ZL5011X_PKT_INCOMPATIBLE_HEADER;
         Zl5011xProtocolTable[deviceIndex].protocol[ZL5011X_IP_UDP_RTP].matchNum[par->enableVlan][par->ipVer4]         = ZL5011X_PKT_INCOMPATIBLE_HEADER;
         Zl5011xProtocolTable[deviceIndex].protocol[ZL5011X_IP_UDP_RTP_PW].matchNum[par->enableVlan][par->ipVer4]      = ZL5011X_PKT_INCOMPATIBLE_HEADER;
         Zl5011xProtocolTable[deviceIndex].protocol[ZL5011X_IP_UDP_RTP_PW_ALT].matchNum[par->enableVlan][par->ipVer4]  = ZL5011X_PKT_INCOMPATIBLE_HEADER;
         Zl5011xProtocolTable[deviceIndex].protocol[ZL5011X_IP_UDP_L2TPV2_PW].matchNum[par->enableVlan][par->ipVer4]   = ZL5011X_PKT_INCOMPATIBLE_HEADER;
         Zl5011xProtocolTable[deviceIndex].protocol[ZL5011X_IP_UDP_RTCP_CTRL].matchNum[par->enableVlan][par->ipVer4]   = ZL5011X_PKT_INCOMPATIBLE_HEADER;
         Zl5011xProtocolTable[deviceIndex].protocol[ZL5011X_IP_UDP_L2TPV2_CTRL].matchNum[par->enableVlan][par->ipVer4] = ZL5011X_PKT_INCOMPATIBLE_HEADER;
         break;

      case ZL5011X_IP_UDP_PW:
         /* IP->UDP->PW cannot co-exist with any other IP->UDP->?? header, so mark
            all others as unavailable */
         Zl5011xProtocolTable[deviceIndex].protocol[ZL5011X_IP_UDP_PW].matchNum[par->enableVlan][par->ipVer4]          = lanRxSetProtocolMatch->matchNum;
         Zl5011xProtocolTable[deviceIndex].protocol[ZL5011X_IP_UDP].matchNum[par->enableVlan][par->ipVer4]             = ZL5011X_PKT_INCOMPATIBLE_HEADER;
         Zl5011xProtocolTable[deviceIndex].protocol[ZL5011X_IP_UDP_CD].matchNum[par->enableVlan][par->ipVer4]          = ZL5011X_PKT_INCOMPATIBLE_HEADER;
         Zl5011xProtocolTable[deviceIndex].protocol[ZL5011X_IP_UDP_RTP].matchNum[par->enableVlan][par->ipVer4]         = ZL5011X_PKT_INCOMPATIBLE_HEADER;
         Zl5011xProtocolTable[deviceIndex].protocol[ZL5011X_IP_UDP_RTP_PW].matchNum[par->enableVlan][par->ipVer4]      = ZL5011X_PKT_INCOMPATIBLE_HEADER;
         Zl5011xProtocolTable[deviceIndex].protocol[ZL5011X_IP_UDP_RTP_PW_ALT].matchNum[par->enableVlan][par->ipVer4]  = ZL5011X_PKT_INCOMPATIBLE_HEADER;
         Zl5011xProtocolTable[deviceIndex].protocol[ZL5011X_IP_UDP_L2TPV2_PW].matchNum[par->enableVlan][par->ipVer4]   = ZL5011X_PKT_INCOMPATIBLE_HEADER;
         Zl5011xProtocolTable[deviceIndex].protocol[ZL5011X_IP_UDP_RTCP_CTRL].matchNum[par->enableVlan][par->ipVer4]   = ZL5011X_PKT_INCOMPATIBLE_HEADER;
         Zl5011xProtocolTable[deviceIndex].protocol[ZL5011X_IP_UDP_L2TPV2_CTRL].matchNum[par->enableVlan][par->ipVer4] = ZL5011X_PKT_INCOMPATIBLE_HEADER;
         break;

      case ZL5011X_IP_UDP_CD:
      case ZL5011X_IP_UDP_RTP:
      case ZL5011X_IP_UDP_RTP_PW:
      case ZL5011X_IP_UDP_RTP_PW_ALT:
      case ZL5011X_IP_UDP_RTCP_CTRL:
      case ZL5011X_IP_UDP_L2TPV2_PW:
      case ZL5011X_IP_UDP_L2TPV2_CTRL:
         if (par->ipVer4 == ZL5011X_TRUE)
         {
            /* mark IP->UDP and IP->UDP->PW as unusable, since they cannot co-exist with
               any other UDP protocols */
            Zl5011xProtocolTable[deviceIndex].protocol[ZL5011X_IP_UDP].matchNum[par->enableVlan][par->ipVer4] = ZL5011X_PKT_INCOMPATIBLE_HEADER;
            Zl5011xProtocolTable[deviceIndex].protocol[ZL5011X_IP_UDP_PW].matchNum[par->enableVlan][par->ipVer4] = ZL5011X_PKT_INCOMPATIBLE_HEADER;

            if ((par->protocolType == ZL5011X_IP_UDP_RTP) ||
               (par->protocolType == ZL5011X_IP_UDP_RTP_PW) ||
               (par->protocolType == ZL5011X_IP_UDP_RTP_PW_ALT))
            {
               Zl5011xProtocolTable[deviceIndex].protocol[ZL5011X_IP_UDP_RTP].matchNum[par->enableVlan][par->ipVer4] = ZL5011X_PKT_INCOMPATIBLE_HEADER;
               Zl5011xProtocolTable[deviceIndex].protocol[ZL5011X_IP_UDP_RTP_PW].matchNum[par->enableVlan][par->ipVer4] = ZL5011X_PKT_INCOMPATIBLE_HEADER;
               Zl5011xProtocolTable[deviceIndex].protocol[ZL5011X_IP_UDP_RTP_PW_ALT].matchNum[par->enableVlan][par->ipVer4] = ZL5011X_PKT_INCOMPATIBLE_HEADER;
            }

            Zl5011xProtocolTable[deviceIndex].protocol[par->protocolType].matchNum[par->enableVlan][par->ipVer4] = lanRxSetProtocolMatch->matchNum;
         }
         else
         {
            /* the IPv6 header is so large, that only one protocol can be supported - except for
               RTP / RTCP and L2TP data/control. So mark all protocols as unuseable */
            Zl5011xProtocolTable[deviceIndex].protocol[ZL5011X_IP_UDP].matchNum[par->enableVlan][par->ipVer4]             = ZL5011X_PKT_INCOMPATIBLE_HEADER;
            Zl5011xProtocolTable[deviceIndex].protocol[ZL5011X_IP_UDP_PW].matchNum[par->enableVlan][par->ipVer4]          = ZL5011X_PKT_INCOMPATIBLE_HEADER;
            Zl5011xProtocolTable[deviceIndex].protocol[ZL5011X_IP_UDP_CD].matchNum[par->enableVlan][par->ipVer4]          = ZL5011X_PKT_INCOMPATIBLE_HEADER;
            Zl5011xProtocolTable[deviceIndex].protocol[ZL5011X_IP_UDP_L2TPV2_PW].matchNum[par->enableVlan][par->ipVer4]   = ZL5011X_PKT_INCOMPATIBLE_HEADER;
            Zl5011xProtocolTable[deviceIndex].protocol[ZL5011X_IP_UDP_L2TPV2_CTRL].matchNum[par->enableVlan][par->ipVer4] = ZL5011X_PKT_INCOMPATIBLE_HEADER;

            /* now record the protocol match for the protocol that has been setup */
            if ((par->protocolType == ZL5011X_IP_UDP_RTCP_CTRL) ||
               (par->protocolType == ZL5011X_IP_UDP_RTP) ||
               (par->protocolType == ZL5011X_IP_UDP_RTP_PW) ||
               (par->protocolType == ZL5011X_IP_UDP_RTP_PW_ALT))
            {
               if (par->protocolType == ZL5011X_IP_UDP_RTCP_CTRL)
               {
                  /* if the control protocol has not been initialised, then this is the first UDP->RTP
                     header to be configured. So, initially allow any of the UDP->RTP data protocols
                     to be valid, then upon first use of a data protocol, invalidate the others */
                  if (Zl5011xProtocolTable[deviceIndex].protocol[ZL5011X_IP_UDP_RTCP_CTRL].matchNum[par->enableVlan][par->ipVer4] == (Uint32T)ZL5011X_INVALID)
                  {
                     Zl5011xProtocolTable[deviceIndex].protocol[ZL5011X_IP_UDP_RTP].matchNum[par->enableVlan][par->ipVer4]         = lanRxSetProtocolMatch->matchNum;
                     Zl5011xProtocolTable[deviceIndex].protocol[ZL5011X_IP_UDP_RTP_PW].matchNum[par->enableVlan][par->ipVer4]      = lanRxSetProtocolMatch->matchNum;
                     Zl5011xProtocolTable[deviceIndex].protocol[ZL5011X_IP_UDP_RTP_PW_ALT].matchNum[par->enableVlan][par->ipVer4]  = lanRxSetProtocolMatch->matchNum;
                  }
               }
               else
               {
                  /* it is only possible to support one of the UDP->RTP data protocols,
                     so update the table to reflect that this is the one that is allowed */
                  Zl5011xProtocolTable[deviceIndex].protocol[ZL5011X_IP_UDP_RTP].matchNum[par->enableVlan][par->ipVer4] = ZL5011X_PKT_INCOMPATIBLE_HEADER;
                  Zl5011xProtocolTable[deviceIndex].protocol[ZL5011X_IP_UDP_RTP_PW].matchNum[par->enableVlan][par->ipVer4] = ZL5011X_PKT_INCOMPATIBLE_HEADER;
                  Zl5011xProtocolTable[deviceIndex].protocol[ZL5011X_IP_UDP_RTP_PW_ALT].matchNum[par->enableVlan][par->ipVer4] = ZL5011X_PKT_INCOMPATIBLE_HEADER;

                  /* the only valid data protocol is the one requested */
                  Zl5011xProtocolTable[deviceIndex].protocol[par->protocolType].matchNum[par->enableVlan][par->ipVer4] = lanRxSetProtocolMatch->matchNum;
               }

               Zl5011xProtocolTable[deviceIndex].protocol[ZL5011X_IP_UDP_RTCP_CTRL].matchNum[par->enableVlan][par->ipVer4] = lanRxSetProtocolMatch->matchNum;
            }
            else
            {
               Zl5011xProtocolTable[deviceIndex].protocol[ZL5011X_IP_UDP_RTP].matchNum[par->enableVlan][par->ipVer4]         = ZL5011X_PKT_INCOMPATIBLE_HEADER;
               Zl5011xProtocolTable[deviceIndex].protocol[ZL5011X_IP_UDP_RTP_PW].matchNum[par->enableVlan][par->ipVer4]      = ZL5011X_PKT_INCOMPATIBLE_HEADER;
               Zl5011xProtocolTable[deviceIndex].protocol[ZL5011X_IP_UDP_RTP_PW_ALT].matchNum[par->enableVlan][par->ipVer4]  = ZL5011X_PKT_INCOMPATIBLE_HEADER;
               Zl5011xProtocolTable[deviceIndex].protocol[ZL5011X_IP_UDP_RTCP_CTRL].matchNum[par->enableVlan][par->ipVer4]   = ZL5011X_PKT_INCOMPATIBLE_HEADER;

               if ((par->protocolType == ZL5011X_IP_UDP_L2TPV2_PW) || (par->protocolType == ZL5011X_IP_UDP_L2TPV2_CTRL))
               {
                  Zl5011xProtocolTable[deviceIndex].protocol[ZL5011X_IP_UDP_L2TPV2_PW].m

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国内精品久久久久影院薰衣草| 国产毛片一区二区| 韩国女主播成人在线| 欧美久久婷婷综合色| 欧美不卡123| 国产成人亚洲综合a∨猫咪| 国产一区久久久| 久久国产精品一区二区| 99视频在线观看一区三区| 日韩av电影免费观看高清完整版 | 成人av网在线| 欧美一区二区美女| 欧美日韩美少妇| 国产成人精品www牛牛影视| 欧美mv日韩mv国产网站| 国产精品久久久久久久岛一牛影视| 人人超碰91尤物精品国产| 欧美成人aa大片| 色伊人久久综合中文字幕| 欧美日韩在线不卡| 欧美群妇大交群中文字幕| 亚洲国产高清不卡| 美洲天堂一区二卡三卡四卡视频| 成人黄色av网站在线| 成人app软件下载大全免费| 欧美一级在线免费| 久久综合999| 久久国产视频网| 久久精品免视看| 久久精品二区亚洲w码| 久久精品视频网| 国产成人一区二区精品非洲| 成人动漫一区二区在线| 中文字幕欧美区| 99精品欧美一区二区三区小说 | 亚洲一区二区四区蜜桃| 亚洲国产sm捆绑调教视频| 欧美日韩一区二区三区在线| 亚洲欧美日韩综合aⅴ视频| 日韩精品欧美成人高清一区二区| 麻豆精品在线视频| av电影在线观看一区| 亚洲精选一二三| 婷婷激情综合网| 欧美精品一区二区不卡| 亚洲午夜免费电影| 欧美一区二区三区精品| 国产成人午夜视频| 欧美成人性福生活免费看| 久久99精品国产麻豆婷婷| 日韩毛片精品高清免费| 欧美日韩国产不卡| 成人黄页毛片网站| 午夜精品一区二区三区三上悠亚| 精品久久久影院| 久久精品国产亚洲aⅴ| 日韩和欧美一区二区| 色综合欧美在线视频区| 成人免费在线视频观看| 欧美va在线播放| 欧美丝袜丝交足nylons图片| 国产麻豆日韩欧美久久| 久久九九国产精品| 日韩久久久精品| 国产剧情在线观看一区二区| 蜜臀久久99精品久久久画质超高清| 国产精品久久久久久久岛一牛影视 | 婷婷丁香久久五月婷婷| 精品少妇一区二区三区在线视频| 奇米亚洲午夜久久精品| 中文字幕在线不卡一区| 日韩美一区二区三区| 中文字幕av一区二区三区| 日本一区二区免费在线| 国产精品进线69影院| 欧美综合久久久| 中文字幕在线不卡| 亚洲黄网站在线观看| 26uuu精品一区二区三区四区在线| 国产宾馆实践打屁股91| 色婷婷综合久久久中文字幕| 久久久久国产精品麻豆| 国产成人午夜高潮毛片| 久久综合网色—综合色88| 国产成人久久精品77777最新版本 国产成人鲁色资源国产91色综 | 久久久五月婷婷| 奇米影视在线99精品| 亚洲国产另类精品专区| 欧美私模裸体表演在线观看| 国产精品99久久久久久似苏梦涵| 亚洲va欧美va人人爽| 美女视频一区二区三区| 亚洲成人精品在线观看| 精品国产成人系列| 欧美三级资源在线| 久久疯狂做爰流白浆xx| 男人的天堂久久精品| 日韩av电影一区| 成人av午夜影院| 欧美日韩一区三区| 中文字幕巨乱亚洲| 精品少妇一区二区三区在线视频 | 国产一区二区成人久久免费影院| 色悠悠久久综合| 中文字幕一区二区三区乱码在线| 亚洲国产中文字幕| 成人午夜伦理影院| 国产午夜久久久久| 日韩高清不卡一区| 久久精品国产亚洲一区二区三区| 一本大道久久精品懂色aⅴ| 精品婷婷伊人一区三区三| 国产成人啪免费观看软件| 国产精品久久久久久久久免费樱桃 | 五月天久久比比资源色| 亚洲动漫第一页| 欧美在线不卡视频| 日日夜夜一区二区| 狠狠色狠狠色综合日日91app| 欧美性色欧美a在线播放| 亚洲人一二三区| 欧美日韩一区二区电影| 亚洲成人在线免费| 日韩一区二区三区观看| 国产精品国产馆在线真实露脸| 成人免费毛片aaaaa**| 日韩一区二区免费高清| 国产成人亚洲综合a∨猫咪| 亚洲国产岛国毛片在线| 蜜桃视频免费观看一区| 99久久免费视频.com| 亚洲成av人片在线观看| 精品国产乱码久久久久久浪潮| 国产精品久久久久一区| 欧美午夜一区二区| 久久9热精品视频| 777奇米四色成人影色区| 一区二区三区免费网站| 久久香蕉国产线看观看99| 亚洲一区二区三区影院| 欧美一区二区三区在线视频| 一区二区国产盗摄色噜噜| 欧美变态tickling挠脚心| 成人av综合一区| 麻豆精品一区二区综合av| 国产精品久久久久久久久图文区 | 成人激情小说乱人伦| 麻豆91精品视频| 亚洲国产一区二区视频| 国产精品亲子伦对白| eeuss影院一区二区三区| 韩国一区二区在线观看| 日韩成人dvd| 丝瓜av网站精品一区二区| 亚洲色欲色欲www| 欧美午夜不卡视频| 久久国产三级精品| 九九精品视频在线看| 国产精品区一区二区三区| 久久亚洲影视婷婷| 国产清纯美女被跳蛋高潮一区二区久久w| 国产一区二区不卡| 成人的网站免费观看| 亚洲一区二区三区小说| 视频在线在亚洲| 免费在线观看精品| 久久精品免费看| 一区二区三区国产精品| 亚洲一区二区视频在线观看| 亚洲成人一区二区在线观看| 日韩国产欧美在线播放| 国产精品久久久久久久久免费桃花 | 国产福利精品导航| 色综合中文字幕国产| 亚洲免费在线电影| 午夜成人在线视频| 日韩毛片高清在线播放| 国产亚洲欧洲一区高清在线观看| 久久久亚洲欧洲日产国码αv| 欧美三级午夜理伦三级中视频| 国产剧情一区二区| 在线不卡中文字幕播放| 日本韩国精品一区二区在线观看| 在线观看欧美日本| 成+人+亚洲+综合天堂| 欧美日韩久久久| 91麻豆精品国产综合久久久久久| 一本一本久久a久久精品综合麻豆| 欧美一级午夜免费电影| 欧美日韩二区三区| 亚洲欧美色一区| 国产91丝袜在线播放九色| 国产麻豆精品theporn| 欧美午夜不卡在线观看免费| 欧美中文字幕一二三区视频| 色av一区二区| 欧美美女bb生活片| 欧美精品一区二区蜜臀亚洲| 久久久99精品免费观看| 麻豆精品视频在线观看视频|