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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? dhcp.c

?? 包含lwip這個精簡IP協(xié)議棧的ucos源代碼.
?? C
?? 第 1 頁 / 共 4 頁
字號:
    dhcp_option_trailer(dhcp);    LWIP_DEBUGF(DHCP_DEBUG | DBG_TRACE, ("dhcp_discover: realloc()ing\n"));    pbuf_realloc(dhcp->p_out, sizeof(struct dhcp_msg) - DHCP_OPTIONS_LEN + dhcp->options_out_len);    /* set receive callback function with netif as user data */    udp_recv(dhcp->pcb, dhcp_recv, netif);    udp_bind(dhcp->pcb, IP_ADDR_ANY, DHCP_CLIENT_PORT);    udp_connect(dhcp->pcb, IP_ADDR_ANY, DHCP_SERVER_PORT);    LWIP_DEBUGF(DHCP_DEBUG | DBG_TRACE, ("dhcp_discover: sendto(DISCOVER, IP_ADDR_BROADCAST, DHCP_SERVER_PORT)\n"));    udp_sendto(dhcp->pcb, dhcp->p_out, IP_ADDR_BROADCAST, DHCP_SERVER_PORT);    LWIP_DEBUGF(DHCP_DEBUG | DBG_TRACE, ("dhcp_discover: deleting()ing\n"));    dhcp_delete_request(netif);    LWIP_DEBUGF(DHCP_DEBUG | DBG_TRACE | DBG_STATE, ("dhcp_discover: SELECTING\n"));    dhcp_set_state(dhcp, DHCP_SELECTING);  } else {    LWIP_DEBUGF(DHCP_DEBUG | DBG_TRACE | 2, ("dhcp_discover: could not allocate DHCP request\n"));  }  dhcp->tries++;  msecs = dhcp->tries < 4 ? (dhcp->tries + 1) * 1000 : 10 * 1000;  dhcp->request_timeout = (msecs + DHCP_FINE_TIMER_MSECS - 1) / DHCP_FINE_TIMER_MSECS;  LWIP_DEBUGF(DHCP_DEBUG | DBG_TRACE | DBG_STATE, ("dhcp_discover(): set request timeout %u msecs\n", msecs));  return result;}/** * Bind the interface to the offered IP address. * * @param netif network interface to bind to the offered address */static void dhcp_bind(struct netif *netif){  struct dhcp *dhcp = netif->dhcp;  struct ip_addr sn_mask, gw_addr;  LWIP_ASSERT("dhcp_bind: netif != NULL", netif != NULL);  LWIP_ASSERT("dhcp_bind: dhcp != NULL", dhcp != NULL);  LWIP_DEBUGF(DHCP_DEBUG | DBG_TRACE | 3, ("dhcp_bind(netif=%p) %c%c%u\n", netif, netif->name[0], netif->name[1], netif->num));  /* temporary DHCP lease? */  if (dhcp->offered_t1_renew != 0xffffffffUL) {    /* set renewal period timer */    LWIP_DEBUGF(DHCP_DEBUG | DBG_TRACE, ("dhcp_bind(): t1 renewal timer %lu secs\n", dhcp->offered_t1_renew));    dhcp->t1_timeout = (dhcp->offered_t1_renew + DHCP_COARSE_TIMER_SECS / 2) / DHCP_COARSE_TIMER_SECS;    if (dhcp->t1_timeout == 0) dhcp->t1_timeout = 1;    LWIP_DEBUGF(DHCP_DEBUG | DBG_TRACE | DBG_STATE, ("dhcp_bind(): set request timeout %u msecs\n", dhcp->offered_t1_renew*1000));  }  /* set renewal period timer */  if (dhcp->offered_t2_rebind != 0xffffffffUL) {    LWIP_DEBUGF(DHCP_DEBUG | DBG_TRACE, ("dhcp_bind(): t2 rebind timer %lu secs\n", dhcp->offered_t2_rebind));    dhcp->t2_timeout = (dhcp->offered_t2_rebind + DHCP_COARSE_TIMER_SECS / 2) / DHCP_COARSE_TIMER_SECS;    if (dhcp->t2_timeout == 0) dhcp->t2_timeout = 1;    LWIP_DEBUGF(DHCP_DEBUG | DBG_TRACE | DBG_STATE, ("dhcp_bind(): set request timeout %u msecs\n", dhcp->offered_t2_rebind*1000));  }  /* copy offered network mask */  ip_addr_set(&sn_mask, &dhcp->offered_sn_mask);  /* subnet mask not given? */  /* TODO: this is not a valid check. what if the network mask is 0? */  if (sn_mask.addr == 0) {    /* choose a safe subnet mask given the network class */    u8_t first_octet = ip4_addr1(&sn_mask);    if (first_octet <= 127) sn_mask.addr = htonl(0xff000000);    else if (first_octet >= 192) sn_mask.addr = htonl(0xffffff00);    else sn_mask.addr = htonl(0xffff0000);  }  ip_addr_set(&gw_addr, &dhcp->offered_gw_addr);  /* gateway address not given? */  if (gw_addr.addr == 0) {    /* copy network address */    gw_addr.addr = (dhcp->offered_ip_addr.addr & sn_mask.addr);    /* use first host address on network as gateway */    gw_addr.addr |= htonl(0x00000001);  }  LWIP_DEBUGF(DHCP_DEBUG | DBG_STATE, ("dhcp_bind(): IP: 0x%08lx\n", dhcp->offered_ip_addr.addr));  netif_set_ipaddr(netif, &dhcp->offered_ip_addr);  LWIP_DEBUGF(DHCP_DEBUG | DBG_STATE, ("dhcp_bind(): SN: 0x%08lx\n", sn_mask.addr));  netif_set_netmask(netif, &sn_mask);  LWIP_DEBUGF(DHCP_DEBUG | DBG_STATE, ("dhcp_bind(): GW: 0x%08lx\n", gw_addr.addr));  netif_set_gw(netif, &gw_addr);  /* bring the interface up */  netif_set_up(netif);  /* netif is now bound to DHCP leased address */  dhcp_set_state(dhcp, DHCP_BOUND);}/** * Renew an existing DHCP lease at the involved DHCP server. * * @param netif network interface which must renew its lease */err_t dhcp_renew(struct netif *netif){  struct dhcp *dhcp = netif->dhcp;  err_t result;  u16_t msecs;  LWIP_DEBUGF(DHCP_DEBUG | DBG_TRACE | 3, ("dhcp_renew()\n"));  dhcp_set_state(dhcp, DHCP_RENEWING);  /* create and initialize the DHCP message header */  result = dhcp_create_request(netif);  if (result == ERR_OK) {    dhcp_option(dhcp, DHCP_OPTION_MESSAGE_TYPE, DHCP_OPTION_MESSAGE_TYPE_LEN);    dhcp_option_byte(dhcp, DHCP_REQUEST);    dhcp_option(dhcp, DHCP_OPTION_MAX_MSG_SIZE, DHCP_OPTION_MAX_MSG_SIZE_LEN);    /* TODO: use netif->mtu in some way */    dhcp_option_short(dhcp, 576);#if 0    dhcp_option(dhcp, DHCP_OPTION_REQUESTED_IP, 4);    dhcp_option_long(dhcp, ntohl(dhcp->offered_ip_addr.addr));#endif#if 0    dhcp_option(dhcp, DHCP_OPTION_SERVER_ID, 4);    dhcp_option_long(dhcp, ntohl(dhcp->server_ip_addr.addr));#endif    /* append DHCP message trailer */    dhcp_option_trailer(dhcp);    pbuf_realloc(dhcp->p_out, sizeof(struct dhcp_msg) - DHCP_OPTIONS_LEN + dhcp->options_out_len);    udp_bind(dhcp->pcb, IP_ADDR_ANY, DHCP_CLIENT_PORT);    udp_connect(dhcp->pcb, &dhcp->server_ip_addr, DHCP_SERVER_PORT);    udp_send(dhcp->pcb, dhcp->p_out);    dhcp_delete_request(netif);    LWIP_DEBUGF(DHCP_DEBUG | DBG_TRACE | DBG_STATE, ("dhcp_renew: RENEWING\n"));  } else {    LWIP_DEBUGF(DHCP_DEBUG | DBG_TRACE | 2, ("dhcp_renew: could not allocate DHCP request\n"));  }  dhcp->tries++;  /* back-off on retries, but to a maximum of 20 seconds */  msecs = dhcp->tries < 10 ? dhcp->tries * 2000 : 20 * 1000;  dhcp->request_timeout = (msecs + DHCP_FINE_TIMER_MSECS - 1) / DHCP_FINE_TIMER_MSECS;   LWIP_DEBUGF(DHCP_DEBUG | DBG_TRACE | DBG_STATE, ("dhcp_renew(): set request timeout %u msecs\n", msecs));  return result;}/** * Rebind with a DHCP server for an existing DHCP lease. * * @param netif network interface which must rebind with a DHCP server */static err_t dhcp_rebind(struct netif *netif){  struct dhcp *dhcp = netif->dhcp;  err_t result;  u16_t msecs;  LWIP_DEBUGF(DHCP_DEBUG | DBG_TRACE | DBG_STATE, ("dhcp_rebind()\n"));  dhcp_set_state(dhcp, DHCP_REBINDING);  /* create and initialize the DHCP message header */  result = dhcp_create_request(netif);  if (result == ERR_OK)  {    dhcp_option(dhcp, DHCP_OPTION_MESSAGE_TYPE, DHCP_OPTION_MESSAGE_TYPE_LEN);    dhcp_option_byte(dhcp, DHCP_REQUEST);    dhcp_option(dhcp, DHCP_OPTION_MAX_MSG_SIZE, DHCP_OPTION_MAX_MSG_SIZE_LEN);    dhcp_option_short(dhcp, 576);#if 0    dhcp_option(dhcp, DHCP_OPTION_REQUESTED_IP, 4);    dhcp_option_long(dhcp, ntohl(dhcp->offered_ip_addr.addr));    dhcp_option(dhcp, DHCP_OPTION_SERVER_ID, 4);    dhcp_option_long(dhcp, ntohl(dhcp->server_ip_addr.addr));#endif    dhcp_option_trailer(dhcp);    pbuf_realloc(dhcp->p_out, sizeof(struct dhcp_msg) - DHCP_OPTIONS_LEN + dhcp->options_out_len);    /* set remote IP association to any DHCP server */    udp_bind(dhcp->pcb, IP_ADDR_ANY, DHCP_CLIENT_PORT);    udp_connect(dhcp->pcb, IP_ADDR_ANY, DHCP_SERVER_PORT);    /* broadcast to server */    udp_sendto(dhcp->pcb, dhcp->p_out, IP_ADDR_BROADCAST, DHCP_SERVER_PORT);    dhcp_delete_request(netif);    LWIP_DEBUGF(DHCP_DEBUG | DBG_TRACE | DBG_STATE, ("dhcp_rebind: REBINDING\n"));  } else {    LWIP_DEBUGF(DHCP_DEBUG | DBG_TRACE | 2, ("dhcp_rebind: could not allocate DHCP request\n"));  }  dhcp->tries++;  msecs = dhcp->tries < 10 ? dhcp->tries * 1000 : 10 * 1000;  dhcp->request_timeout = (msecs + DHCP_FINE_TIMER_MSECS - 1) / DHCP_FINE_TIMER_MSECS;   LWIP_DEBUGF(DHCP_DEBUG | DBG_TRACE | DBG_STATE, ("dhcp_rebind(): set request timeout %u msecs\n", msecs));  return result;}/** * Release a DHCP lease. * * @param netif network interface which must release its lease */err_t dhcp_release(struct netif *netif){  struct dhcp *dhcp = netif->dhcp;  err_t result;  u16_t msecs;  LWIP_DEBUGF(DHCP_DEBUG | DBG_TRACE | 3, ("dhcp_release()\n"));  /* idle DHCP client */  dhcp_set_state(dhcp, DHCP_OFF);  /* clean old DHCP offer */  dhcp->server_ip_addr.addr = 0;  dhcp->offered_ip_addr.addr = dhcp->offered_sn_mask.addr = 0;  dhcp->offered_gw_addr.addr = dhcp->offered_bc_addr.addr = 0;  dhcp->offered_t0_lease = dhcp->offered_t1_renew = dhcp->offered_t2_rebind = 0;  dhcp->dns_count = 0;    /* create and initialize the DHCP message header */  result = dhcp_create_request(netif);  if (result == ERR_OK) {    dhcp_option(dhcp, DHCP_OPTION_MESSAGE_TYPE, DHCP_OPTION_MESSAGE_TYPE_LEN);    dhcp_option_byte(dhcp, DHCP_RELEASE);    dhcp_option_trailer(dhcp);    pbuf_realloc(dhcp->p_out, sizeof(struct dhcp_msg) - DHCP_OPTIONS_LEN + dhcp->options_out_len);    udp_bind(dhcp->pcb, IP_ADDR_ANY, DHCP_CLIENT_PORT);    udp_connect(dhcp->pcb, &dhcp->server_ip_addr, DHCP_SERVER_PORT);    udp_send(dhcp->pcb, dhcp->p_out);    dhcp_delete_request(netif);    LWIP_DEBUGF(DHCP_DEBUG | DBG_TRACE | DBG_STATE, ("dhcp_release: RELEASED, DHCP_OFF\n"));  } else {    LWIP_DEBUGF(DHCP_DEBUG | DBG_TRACE | 2, ("dhcp_release: could not allocate DHCP request\n"));  }  dhcp->tries++;  msecs = dhcp->tries < 10 ? dhcp->tries * 1000 : 10 * 1000;  dhcp->request_timeout = (msecs + DHCP_FINE_TIMER_MSECS - 1) / DHCP_FINE_TIMER_MSECS;  LWIP_DEBUGF(DHCP_DEBUG | DBG_TRACE | DBG_STATE, ("dhcp_release(): set request timeout %u msecs\n", msecs));  /* bring the interface down */  netif_set_down(netif);  /* remove IP address from interface */  netif_set_ipaddr(netif, IP_ADDR_ANY);  netif_set_gw(netif, IP_ADDR_ANY);  netif_set_netmask(netif, IP_ADDR_ANY);    /* TODO: netif_down(netif); */  return result;}/** * Remove the DHCP client from the interface. * * @param netif The network interface to stop DHCP on */void dhcp_stop(struct netif *netif){  struct dhcp *dhcp = netif->dhcp;  LWIP_ASSERT("dhcp_stop: netif != NULL", netif != NULL);  LWIP_DEBUGF(DHCP_DEBUG | DBG_TRACE | 3, ("dhcp_stop()\n"));  /* netif is DHCP configured? */  if (dhcp != NULL)  {    if (dhcp->pcb != NULL)    {      udp_remove(dhcp->pcb);      dhcp->pcb = NULL;    }    if (dhcp->p != NULL)    {      pbuf_free(dhcp->p);      dhcp->p = NULL;    }    /* free unfolded reply */    dhcp_free_reply(dhcp);    mem_free((void *)dhcp);    netif->dhcp = NULL;  }}/* * Set the DHCP state of a DHCP client. * * If the state changed, reset the number of tries. * * TODO: we might also want to reset the timeout here? */static void dhcp_set_state(struct dhcp *dhcp, unsigned char new_state){  if (new_state != dhcp->state)  {    dhcp->state = new_state;    dhcp->tries = 0;  }}/* * Concatenate an option type and length field to the outgoing * DHCP message. * */static void dhcp_option(struct dhcp *dhcp, u8_t option_type, u8_t option_len){  LWIP_ASSERT("dhcp_option_short: dhcp->options_out_len + 2 + option_len <= DHCP_OPTIONS_LEN", dhcp->options_out_len + 2 + option_len <= DHCP_OPTIONS_LEN);  dhcp->msg_out->options[dhcp->options_out_len++] = option_type;  dhcp->msg_out->options[dhcp->options_out_len++] = option_len;}/* * Concatenate a single byte to the outgoing DHCP message. * */static void dhcp_option_byte(struct dhcp *dhcp, u8_t value){  LWIP_ASSERT("dhcp_option_short: dhcp->options_out_len < DHCP_OPTIONS_LEN", dhcp->options_out_len < DHCP_OPTIONS_LEN);  dhcp->msg_out->options[dhcp->options_out_len++] = value;}static void dhcp_option_short(struct dhcp *dhcp, u16_t value){  LWIP_ASSERT("dhcp_option_short: dhcp->options_out_len + 2 <= DHCP_OPTIONS_LEN", dhcp->options_out_len + 2 <= DHCP_OPTIONS_LEN);  dhcp->msg_out->options[dhcp->options_out_len++] = (value & 0xff00U) >> 8;  dhcp->msg_out->options[dhcp->options_out_len++] =  value & 0x00ffU;}static void dhcp_option_long(struct dhcp *dhcp, u32_t value){  LWIP_ASSERT("dhcp_option_long: dhcp->options_out_len + 4 <= DHCP_OPTIONS_LEN", dhcp->options_out_len + 4 <= DHCP_OPTIONS_LEN);  dhcp->msg_out->options[dhcp->options_out_len++] = (value & 0xff000000UL) >> 24;  dhcp->msg_out->options[dhcp->options_out_len++] = (value & 0x00ff0000UL) >> 16;  dhcp->msg_out->options[dhcp->options_out_len++] = (value & 0x0000ff00UL) >> 8;  dhcp->msg_out->options[dhcp->options_out_len++] = (value & 0x000000ffUL);}/** * Extract the DHCP message and the DHCP options. * * Extract the DHCP message and the DHCP options, each into a contiguous * piece of memory. As a DHCP message is variable sized by its options, * and also allows overriding some fields for options, the easy approach * is to first unfold the options into a conitguous piece of memory, and * use that further on. * */static err_t dhcp_unfold_reply(struct dhcp *dhcp){  struct pbuf *p = dhcp->p;  u8_t *ptr;  u16_t i;  u16_t j = 0;  LWIP_ASSERT("dhcp->p != NULL", dhcp->p != NULL);  /* free any left-overs from previous unfolds */  dhcp_free_reply(dhcp);  /* options present? */  if (dhcp->p->tot_len > (sizeof(struct dhcp_msg) - DHCP_OPTIONS_LEN))  {    dhcp->options_in_len = dhcp->p->tot_len - (sizeof(struct dhcp_msg) - DHCP_OPTIONS_LEN);    dhcp->options_in = mem_malloc(dhcp->options_in_len);    if (dhcp->options_in == NULL)    {      LWIP_DEBUGF(DHCP_DEBUG | DBG_TRACE | 2, ("dhcp_unfold_reply(): could not allocate dhcp->options\n"));      return ERR_MEM;    }  }  dhcp->msg_in = mem_malloc(sizeof(struct dhcp_msg) - DHCP_OPTIONS_LEN);  if (dhcp->msg_in == NULL)  {

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
日韩精品一区二区三区三区免费| 精品成人佐山爱一区二区| 日产欧产美韩系列久久99| 国产欧美日韩综合| 欧美久久久一区| 成人深夜视频在线观看| 日韩1区2区3区| 一区二区三区在线不卡| 国产丝袜在线精品| 精品日韩在线观看| 在线电影国产精品| 色香蕉久久蜜桃| 成人夜色视频网站在线观看| 美女视频一区在线观看| 亚洲二区在线观看| 亚洲丝袜自拍清纯另类| 国产精品亲子伦对白| 久久久久久久综合色一本| 在线成人高清不卡| 欧美日韩免费一区二区三区 | 日韩激情在线观看| 亚洲欧美日韩系列| 1区2区3区精品视频| 久久众筹精品私拍模特| 欧美一级高清片| 欧美一级夜夜爽| 欧美三区在线观看| 欧美私人免费视频| 欧美网站大全在线观看| 欧美在线观看视频在线| 成人免费观看av| 国产精品一线二线三线精华| 国内久久精品视频| 精品一区二区三区免费视频| 免费在线一区观看| 奇米色一区二区| 蜜臀久久久久久久| 免费成人结看片| 久久成人麻豆午夜电影| 日韩精品一二三四| 蜜臀av性久久久久蜜臀av麻豆| 午夜久久久久久久久久一区二区| 亚洲成av人片一区二区三区| 亚洲成人免费视| 午夜激情一区二区三区| 日韩高清在线电影| 久久99精品国产麻豆婷婷| 国内精品伊人久久久久av一坑 | 美女视频网站黄色亚洲| 另类小说色综合网站| 国产自产视频一区二区三区| 国产精品影视在线| 99re6这里只有精品视频在线观看| 成人av在线播放网址| 色综合咪咪久久| 欧美三级韩国三级日本三斤| 欧美一区二区三区色| 精品国产99国产精品| 国产视频一区在线观看| 最新国产精品久久精品| 午夜精品一区在线观看| 韩国一区二区在线观看| 成人综合婷婷国产精品久久蜜臀| 91啪亚洲精品| 欧美精品日韩综合在线| 欧美不卡一区二区三区四区| 久久在线观看免费| 亚洲免费三区一区二区| 午夜电影网亚洲视频| 激情综合网天天干| 成人av电影在线| 欧美人伦禁忌dvd放荡欲情| 精品伦理精品一区| **欧美大码日韩| 日韩av网站免费在线| 丁香一区二区三区| 欧美三级电影网| 国产色产综合色产在线视频| 亚洲精品一二三区| 麻豆91精品视频| 成人精品亚洲人成在线| 8x8x8国产精品| 亚洲国产精品成人综合| 亚洲一区二区三区视频在线播放| 另类人妖一区二区av| 一本一本大道香蕉久在线精品 | 成人亚洲精品久久久久软件| 欧美在线综合视频| 国产欧美日韩在线| 日韩二区三区四区| 91农村精品一区二区在线| 日韩一区二区电影在线| 一区二区三区自拍| 国产传媒欧美日韩成人| 欧美精品 日韩| 综合激情成人伊人| 久久成人免费电影| 欧美日韩一级片网站| 国产精品久线在线观看| 麻豆一区二区三| 欧美视频在线一区二区三区| 国产日韩欧美电影| 麻豆精品精品国产自在97香蕉| 日本精品一区二区三区高清| 亚洲精品在线三区| 日韩电影免费在线看| 一本大道av一区二区在线播放| 久久久亚洲综合| 看电影不卡的网站| 欧美午夜影院一区| 亚洲欧美日韩国产成人精品影院| 国产大陆精品国产| 久久色成人在线| 久久精品国产网站| 欧美一区二区视频在线观看| 樱花影视一区二区| av激情成人网| 国产精品美日韩| 福利电影一区二区| 久久亚洲二区三区| 久久99精品国产麻豆婷婷洗澡| 91精品中文字幕一区二区三区| 亚洲一区二区四区蜜桃| 在线看国产一区二区| 亚洲欧美日韩系列| 日本久久电影网| 一区二区三区不卡视频| 色噜噜狠狠色综合中国| 亚洲婷婷综合色高清在线| 成人av在线观| 亚洲色图.com| 色吧成人激情小说| 亚洲精品日韩专区silk| 97久久超碰国产精品电影| 国产精品国产三级国产专播品爱网 | 一区二区三区精品在线| 成人精品视频.| 中文字幕一区二区三区在线观看 | 26uuu国产一区二区三区| 精久久久久久久久久久| 精品日韩欧美一区二区| 看电视剧不卡顿的网站| 精品日韩99亚洲| 丁香一区二区三区| 亚洲欧美日韩系列| 欧美日韩午夜在线| 蜜桃免费网站一区二区三区| 精品人在线二区三区| 国产一区二区网址| 国产精品欧美精品| 91黄色免费版| 日韩vs国产vs欧美| 久久色在线观看| 成年人午夜久久久| 亚洲一区国产视频| 精品国产污污免费网站入口| 国产精品小仙女| 亚洲丝袜另类动漫二区| 欧美日韩一区高清| 精品伊人久久久久7777人| 国产视频一区二区在线观看| 91香蕉视频在线| 日韩国产在线观看| 欧美精品一区二区久久婷婷| 99精品久久只有精品| 亚洲国产精品久久艾草纯爱| 欧美一区二区三区播放老司机| 国产在线观看一区二区| 亚洲丝袜自拍清纯另类| 制服丝袜中文字幕一区| 国产精品1024| 亚洲制服欧美中文字幕中文字幕| 日韩色视频在线观看| 波多野结衣一区二区三区| 亚洲国产wwwccc36天堂| 久久久天堂av| 欧美日韩高清影院| 成人精品视频.| 日本aⅴ免费视频一区二区三区| 亚洲国产精品成人久久综合一区| 欧美亚洲国产一区二区三区| 精品在线视频一区| 一区二区三区成人| 久久久精品免费观看| 欧美在线你懂的| 懂色av一区二区三区免费观看| 亚洲va在线va天堂| 欧美国产欧美综合| 日韩视频一区二区在线观看| 色哟哟一区二区| 国产成人免费在线视频| 亚洲成人动漫在线观看| 欧美激情在线观看视频免费| 欧美乱妇一区二区三区不卡视频| 成人看片黄a免费看在线| 精品一区二区三区免费| 亚洲一区二区四区蜜桃| 国产精品对白交换视频| 欧美tickle裸体挠脚心vk| 欧美精品自拍偷拍动漫精品|