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

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

?? net_config.c

?? 基于lm3s6965的SMTP_demo示例代碼,對初學者特別有幫助。
?? C
?? 第 1 頁 / 共 2 頁
字號:
//   <i> Default: 1023
#define TCP_LASTPORT   1023

//   <o>TCP_MAXRETRY: TCP Number of Retries <0-20>
//   <i> How many times TCP module will try to retransmit data
//   <i> before giving up. Increase this value for high-latency
//   <i> and low_throughput networks.
//   <i> Default: 5
#define TCP_MAXRETRY   5

//   <o>TCP_RETRYTOUT: TCP Retry Timeout in seconds <1-10>
//   <i> If data frame not acknowledged within this time frame,
//   <i> TCP module will try to resend data again
//   <i> Default: 4
#define TCP_RETRYTOUT  4

//   <o>TCP_DEFTOUT: TCP Default Connect Timeout in seconds <1-600>
//   <i> Default TCP Socket Keep Alive timeout. When it expires
//   <i> with no TCP data frame send, TCP Connection is closed.
//   <i> Default: 120
#define TCP_DEFTOUT    120

/* TCP fixed timeouts */
#define TCP_INIT_RETRY_TOUT 1     /* TCP initial Retransmit period in sec.   */
#define TCP_SYN_RETRY_TOUT  2     /* TCP SYN frame retransmit period in sec. */
#define TCP_CONRETRY        7     /* Number of retries to establish a conn.  */

// </e>
// <e>HTTP Server
// ==============
#define HTTP_ENABLE    0

//   <o>HTTP_NUMSESS: Number of HTTP Sessions <1-10>
//   <i> Number of simultaneously active HTTP Sessions.
//   <i> Modify also the number of TCP Sockets because
//   <i> each HTTP session uses it's own TCP socket
//   <i> Default: 3
#define HTTP_NUMSESS   5

//   <e>HTTP_ENAUTH: Enable User Authentication
//     <i> When enabled, the user will have to authenticate
//     <i> himself by username and password before accessing
//     <i> any page on this Embedded WEB server.
#define HTTP_ENAUTH    1

//     <s.20>HTTP_AUTHREALM: Authentication Realm string
//     <i> Default: "Embedded WEB Server"
#define HTTP_AUTHREALM "Embedded WEB Server"

//     <s.15>HTTP_AUTHUSER: Authentication Username
//     <i> Default: "admin"
#define HTTP_AUTHUSER  "admin"

//     <s.15>HTTP_AUTHPASSW: Authentication Password
//     <i> Default: ""
#define HTTP_AUTHPASSW ""

//   </e>
// </e>
// <e>Telnet Server
// ================
#define TNET_ENABLE    0

//   <o>TNET_NUMSESS: Number of Telnet Connections <1-10>
//   <i> Number of simultaneously active Telnet Connections.
//   <i> Modify also the number of TCP Sockets because
//   <i> each Telnet connection uses it's own TCP socket
//   <i> Default: 1
#define TNET_NUMSESS   2

//   <e>TNET_ENAUTH: Enable User Authentication
//   <i> When enabled, the user will have to authenticate
//   <i> himself by username and password before access
//   <i> to the system is allowed.
#define TNET_ENAUTH    1

//     <s.15>TNET_AUTHUSER: Authentication Username
//     <i> Default: "admin"
#define TNET_AUTHUSER  "admin"

//     <s.15>TNET_AUTHPASSW: Authentication Password
//     <i> Default: ""
#define TNET_AUTHPASSW ""

//   </e>
// </e>
// <e>TFTP Server
// ==============
#define TFTP_ENABLE    0

//   <o>TFTP_NUMSESS: Number of TFTP Sessions <1-10>
//   <i> Number of simultaneously active TFTP Sessions
//   <i> All TFTP Sessions use the same UDP socket listening
//   <i> on defalut TFTP Server port 69.
//   <i> Default: 1
#define TFTP_NUMSESS   1

//   <o>TFTP_DEFTOUT: TFTP Inactive Session Timeout in seconds <5-120>
//   <i> When timeout expires TFTP Session is closed. This timeout
//   <i> is used when the UDP connection is broken because of error.
//   <i> Default: 15
#define TFTP_DEFTOUT   15

//   <o>TFTP_MAXRETRY: TFTP Number of Retries <1-10>
//   <i> How many times TFTP Server will try to retransmit data
//   <i> before giving up.
//   <i> Default: 4
#define TFTP_MAXRETRY  4

// </e>
// <e>DNS Client
// =============
#define DNS_ENABLE     0

//     <o>DNS_TABSIZE: DNS Cache Table size <5-100>
//     <i> Number of cached DNS host names/IP addresses
//     <i> Default: 20
#define DNS_TABSIZE    20

// </e>
// <e>SMTP Client
// ==============
#define SMTP_ENABLE     1

//     <o>SMTP_DEFTOUT: SMTP Client Timeout in seconds <5-120>
//     <i> This is a time for SMTP Client to wait for a response from
//     <i> SMTP Server. If timeout expires, Client aborts operation.
//     <i> Default: 20
#define SMTP_DEFTOUT   20

// </e>
//------------- <<< end of configuration section >>> -----------------------

/*----------------------------------------------------------------------------
 *      RTL User configuration part END
 *---------------------------------------------------------------------------*/

#define TICK_RATE       1000 / TICK_INTERVAL

#if (SLIP_ENABLE | PPP_ENABLE | ETH_ENABLE) == 0
   #error all network interfaces disabled in configuration
#endif

#if (SLIP_ENABLE & PPP_ENABLE) == 1
   #error both SLIP and PPP interfaces enabled
#endif

/*----------------------------------------------------------------------------
 *      Global Variables
 *---------------------------------------------------------------------------*/

/* Own and Broadcast Ethernet address */
#if ETH_ENABLE == 1
  U8       own_hw_adr[ETH_ADRLEN] = { _MAC1, _MAC2, _MAC3, _MAC4, _MAC5, _MAC6 };
  U8 const MAC_Broadcast[ETH_ADRLEN] = { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF };
#endif
/* Broadcast IP address */
U8 const IP_Broadcast[IP_ADRLEN]  = { 0xFF, 0xFF, 0xFF, 0xFF };
/* Local Machine info */
LOCALM const nlocalm[3] = {
  /* Ethernet: Local IP address */
#if ETH_ENABLE == 1
  { { _IP1, _IP2, _IP3, _IP4 },
    /* Default Gateway IP address */
    { _GW1, _GW2, _GW3, _GW4 },
    /* Subnet IP Mask */
    { _MSK1, _MSK2, _MSK3, _MSK4 },
    /* Primary DNS Server IP */
    { _pDNS1, _pDNS2, _pDNS3, _pDNS4 },
    /* Secondary DNS Server IP */
    { _sDNS1, _sDNS2, _sDNS3, _sDNS4 }
  },
#else
   { { 0,0,0,0 }, { 0,0,0,0 }, { 0,0,0,0 }, { 0,0,0,0 }, { 0,0,0,0 } },
#endif
  /* PPP: Local IP address */
#if PPP_ENABLE == 1
  { { _IP1P, _IP2P, _IP3P, _IP4P },
    /* Default Gateway IP address */
    { 0, 0, 0, 0 },
    /* Subnet IP Mask */
    { _MSK1P, _MSK2P, _MSK3P, _MSK4P },
    /* Primary DNS Server IP */
    { _pDNS1P, _pDNS2P, _pDNS3P, _pDNS4P },
    /* Secondary DNS Server IP */
    { _sDNS1P, _sDNS2P, _sDNS3P, _sDNS4P }
  },
#else
   { { 0,0,0,0 }, { 0,0,0,0 }, { 0,0,0,0 }, { 0,0,0,0 }, { 0,0,0,0 } },
#endif
  /* SLIP: Local IP address */
#if SLIP_ENABLE == 1
  { { _IP1S, _IP2S, _IP3S, _IP4S },
    /* Default Gateway IP address */
    { 0, 0, 0, 0 },
    /* Subnet IP Mask */
    { _MSK1S, _MSK2S, _MSK3S, _MSK4S },
    /* Primary DNS Server IP */
    { _pDNS1S, _pDNS2S, _pDNS3S, _pDNS4S },
    /* Secondary DNS Server IP */
    { _sDNS1S, _sDNS2S, _sDNS3S, _sDNS4S }
  }
#else
   { { 0,0,0,0 }, { 0,0,0,0 }, { 0,0,0,0 }, { 0,0,0,0 }, { 0,0,0,0 } },
#endif
};
U8 const netif_cfg = (PPP_GETIP<<5 | SLIP_DEFGW<<4 | PPP_DEFGW<<3 |
                        SLIP_ENABLE<<2 | PPP_ENABLE<<1 | ETH_ENABLE);

/* Memory pool for Eternet Frames. */
U32 Mem_Pool[MEM_SIZE];
/* ARP cache table */
#if ETH_ENABLE == 1
  struct arp_info arp_table[ARP_TABSIZE];
#endif
/* UDP socket Control block table */
#if UDP_ENABLE == 1
  struct udp_info udp_socket[UDP_NUMSOCKS];
#endif
/* TCP socket Control block table */
#if TCP_ENABLE == 1
  struct tcp_info tcp_socket[TCP_NUMSOCKS+1];
#endif
/* HTTP Server Session Control block table */
#if HTTP_ENABLE == 1
  struct http_info http_session[HTTP_NUMSESS];
#endif
/* Telnet Server Session Control block table */
#if TNET_ENABLE == 1
  struct tnet_info tnet_session[TNET_NUMSESS];
#endif
/* TFTP Server Session Control block table */
#if TFTP_ENABLE == 1
  struct tftp_info tftp_session[TFTP_NUMSESS];
#endif
/* DNS cache table */
#if DNS_ENABLE == 1
  struct dns_info dns_table[DNS_TABSIZE];
#endif

/* Exported defines to other modules */
U32 const MPool_Size     = sizeof (Mem_Pool);
U16 const tick_rate      = TICK_RATE;
U8        lhost_name[16] = LHOST_NAME;
#if ETH_ENABLE == 1
  U16 const arp_TabSize  = ARP_TABSIZE;
  U16 const arp_TimeOut  = ARP_TIMEOUT;
  U8  const arp_MaxRetry = ARP_MAXRETRY;
  U8  const arp_Resend   = ARP_RESEND;
#endif
#if PPP_ENABLE == 1
  U32 const ppp_ACCMap    = _ACCM1<<24 | _ACCM2<<16 | _ACCM3<<8 | _ACCM4;
  U16 const ppp_SerTout   = 5 * TICK_RATE;
  U16 const lcp_RetryTout = LCP_RETRYTOUT * TICK_RATE;
  U16 const pap_RetryTout = PAP_RETRYTOUT * TICK_RATE;
  U16 const ipcp_RetryTout= IPCP_RETRYTOUT * TICK_RATE;
  U8  const lcp_MaxRetry  = LCP_MAXRETRY;
  U8  const pap_MaxRetry  = PAP_MAXRETRY;
  U8  const ipcp_MaxRetry = IPCP_MAXRETRY;
#endif
#if SLIP_ENABLE == 1
  U16 const slip_SerTout  = 5 * TICK_RATE;
#endif
#if UDP_ENABLE == 1
  U8  const udp_NumSocks  = UDP_NUMSOCKS;
  U16 const udp_LastPort  = UDP_LASTPORT;
#endif
#if TCP_ENABLE == 1
  U8  const tcp_NumSocks  = TCP_NUMSOCKS;
  U8  const tcp_MaxRetry  = TCP_MAXRETRY;
  U16 const tcp_LastPort  = TCP_LASTPORT;
  U16 const tcp_RetryTout = TCP_RETRYTOUT * TICK_RATE;
  U16 const tcp_2MSSTout  = (200 + TICK_INTERVAL - 1) / TICK_INTERVAL;
  U16 const tcp_SynRetryTout = TCP_SYN_RETRY_TOUT * TICK_RATE;
  U16 const tcp_InitRetryTout= TCP_INIT_RETRY_TOUT * TICK_RATE;
  U16 const tcp_DefTout   = TCP_DEFTOUT;
  U8  const tcp_ConRetry  = TCP_CONRETRY;
#endif
#if HTTP_ENABLE == 1
  U8 const http_NumSess  = HTTP_NUMSESS;
  U8 const http_EnAuth   = HTTP_ENAUTH;
  U8 const http_auth_dev[]     = HTTP_AUTHREALM;
  U8 const http_auth_user[]    = HTTP_AUTHUSER;
  U8       http_auth_passw[20] = HTTP_AUTHPASSW;
#endif
#if TNET_ENABLE == 1
  U8 const tnet_NumSess  = TNET_NUMSESS;
  U8 const tnet_EnAuth   = TNET_ENAUTH;
  U8 const tnet_auth_user[]    = TNET_AUTHUSER;
  U8       tnet_auth_passw[20] = TNET_AUTHPASSW;
#endif
#if TFTP_ENABLE == 1
  U8  const tftp_NumSess  = TFTP_NUMSESS;
  U8  const tftp_MaxRetry = TFTP_MAXRETRY;
  U16 const tftp_DefTout  = TFTP_DEFTOUT;
#endif
#if DNS_ENABLE == 1
  U16 const dns_TabSize   = DNS_TABSIZE;
#endif
#if SMTP_ENABLE == 1
  U16 const smtp_DefTout  = SMTP_DEFTOUT;
#endif

/*----------------------------------------------------------------------------
 *      Fatal Error Handler
 *---------------------------------------------------------------------------*/

void sys_error (ERROR_CODE code) {
   /* This function is called when a fatal error is encountered. The normal */
   /* program execution is not possible anymore. Add your crytical error   .*/
   /* handler code here.                                                    */

   switch (code) {
      case ERR_MEM_ALLOC:
         /* Out of memory. */
         break;

      case ERR_MEM_FREE:
         /* Trying to release non existing memory block. */
         break;

      case ERR_MEM_CORRUPT:
         /* Memory Link pointer is Corrupted. */
         /* More data written than the size of allocated mem block. */
         break;

      case ERR_UDP_ALLOC:
         /* Out of UDP Sockets. */
         break;

      case ERR_TCP_ALLOC:
         /* Out of TCP Sockets. */
         break;

      case ERR_TCP_STATE:
         /* TCP State machine in undefined state. */
         break;
   }

   /* End-less loop */
   while (1);
}


/*----------------------------------------------------------------------------
 *      Global Functions
 *---------------------------------------------------------------------------*/


/*--------------------------- init_system -----------------------------------*/

void init_system (void) {
   /* Initialize configured interfaces and applications. */

#if ETH_ENABLE == 1
   init_eth_link ();
#endif
#if PPP_ENABLE == 1
   init_ppp_link ();
#endif
#if SLIP_ENABLE == 1
   init_slip_link ();
#endif

#if UDP_ENABLE == 1
   init_udp ();
#endif
#if TCP_ENABLE == 1
   init_tcp ();
#endif
#if HTTP_ENABLE == 1
   init_http ();
#endif
#if TNET_ENABLE == 1
   init_tnet ();
#endif
#if TFTP_ENABLE == 1
   init_tftp ();
#endif
#if (NBNS_ENABLE & ETH_ENABLE) == 1
   init_nbns ();
#endif
#if (DHCP_ENABLE & ETH_ENABLE) == 1
   init_dhcp ();
#endif
#if DNS_ENABLE == 1
   init_dns ();
#endif
#if SMTP_ENABLE == 1
   init_smtp ();
#endif
}


/*--------------------------- run_system ------------------------------------*/

void run_system (void) {
   /* Run configured interfaces and applications. */

#if ETH_ENABLE == 1
   run_eth_link ();
#endif
#if PPP_ENABLE == 1
   run_ppp_link ();
#endif
#if SLIP_ENABLE == 1
   run_slip_link ();
#endif

#if TCP_ENABLE == 1
   tcp_poll_sockets ();
#endif
#if HTTP_ENABLE == 1
   run_http_server ();
#endif
#if TNET_ENABLE == 1
   run_tnet_server ();
#endif
#if TFTP_ENABLE == 1
   run_tftp_server ();
#endif
#if (DHCP_ENABLE & ETH_ENABLE) == 1
   run_dhcp_client ();
#endif
#if DNS_ENABLE == 1
   run_dns_client ();
#endif
#if SMTP_ENABLE == 1
   run_smtp_client ();
#endif
}


/*--------------------------- process_hl_udp --------------------------------*/

void process_hl_udp (OS_FRAME *frame) {
   /* Process udp protocol frame */

#if UDP_ENABLE == 1
   process_udp (frame);
#else
   /* Just to supress CARM compiler warning */
   frame = frame;
#endif
}


/*--------------------------- process_hl_tcp --------------------------------*/

void process_hl_tcp (OS_FRAME *frame) {
   /* Process tcp protocol frame */

#if TCP_ENABLE == 1
   process_tcp (frame);
#else
   /* Just to supress CARM compiler warning */
   frame = frame;
#endif
}


/*--------------------------- dispatch_frame --------------------------------*/

BOOL dispatch_frame (OS_FRAME *frame, U8 netif) {
   /* Dispatch the outgoing frame to selected network interface. */

switch (netif) {
#if ETH_ENABLE == 1
      case NETIF_ETH:
         return (eth_send_frame (frame));
#endif
#if PPP_ENABLE == 1
      case NETIF_PPP:
         return (ppp_send_frame (frame, PPP_PROT_IP));
#endif
#if SLIP_ENABLE == 1
      case NETIF_SLIP:
         return (slip_send_frame (frame));
#endif
   }
   return (__FALSE);
}


/*--------------------------- eth_chk_adr -----------------------------------*/

#if ETH_ENABLE == 0
BOOL eth_chk_adr (OS_FRAME *frame) {
   /* Provide an empty function when the 'Ethernet Interface' is disabled. */
   frame = frame;
   return (__FALSE);
}
#endif


/*--------------------------- eth_get_adr -----------------------------------*/

#if ETH_ENABLE == 0
U8 *eth_get_adr (U8 *ipadr) {
   /* Provide an empty function when the 'Ethernet Interface' is disabled. */
   ipadr = ipadr;
   return (NULL);
}
#endif


/*----------------------------------------------------------------------------
 * end of file
 *---------------------------------------------------------------------------*/

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久久电影一区二区三区| 欧美日韩高清一区二区三区| 日韩精品一区二区三区swag| 免费黄网站欧美| 精品国产污污免费网站入口| 久久99久久久欧美国产| 国产日韩欧美亚洲| www.亚洲色图.com| 丝袜美腿成人在线| 欧美精品一区二区三区蜜桃 | 国产欧美一区在线| av毛片久久久久**hd| 亚洲综合激情另类小说区| 在线综合亚洲欧美在线视频| 久久超级碰视频| 国产精品久久久久久久久久久免费看 | 国产精品一区二区久久精品爱涩 | 国产精品国产三级国产aⅴ无密码 国产精品国产三级国产aⅴ原创 | 亚洲色图.com| 欧美日韩国产电影| 韩国精品免费视频| 亚洲免费观看在线观看| 7777女厕盗摄久久久| 国产一区二区免费看| 国产精品萝li| 在线电影国产精品| 国产成人av一区二区三区在线观看| 日韩一区有码在线| 欧美一区二区三区小说| 不卡电影一区二区三区| 免费精品99久久国产综合精品| 久久婷婷一区二区三区| 日本精品视频一区二区| 寂寞少妇一区二区三区| 一二三四区精品视频| 精品国产一区二区三区久久久蜜月| heyzo一本久久综合| 免费一级片91| 亚洲高清不卡在线| 国产精品久久久久一区| 日韩三级高清在线| 在线成人高清不卡| 成人少妇影院yyyy| 奇米精品一区二区三区在线观看一 | 精品国精品自拍自在线| 色综合天天视频在线观看| 黄页网站大全一区二区| 亚洲香肠在线观看| 一色屋精品亚洲香蕉网站| 精品久久人人做人人爱| 欧美日韩成人综合| 色综合一个色综合亚洲| 懂色av中文一区二区三区| 蜜桃久久久久久久| 亚洲成人动漫一区| 亚洲女性喷水在线观看一区| 国产欧美日韩另类视频免费观看| 欧美妇女性影城| 欧美亚洲一区二区在线| 99精品偷自拍| 成人av网站在线观看免费| 国产麻豆一精品一av一免费| 免费在线观看视频一区| 亚洲成人一区二区| 亚洲成在线观看| 亚洲成av人综合在线观看| 亚洲免费在线电影| 亚洲色图欧洲色图| 亚洲美女视频在线观看| 国产精品初高中害羞小美女文 | 久久久精品天堂| 精品欧美一区二区三区精品久久| 欧美妇女性影城| 666欧美在线视频| 欧美一区二区在线看| 欧美浪妇xxxx高跟鞋交| 欧美一级淫片007| 日韩欧美国产综合一区| 精品日韩成人av| 久久久91精品国产一区二区三区| 一区二区三区在线影院| 亚洲欧美成人一区二区三区| 亚洲日本在线a| 亚洲综合丁香婷婷六月香| 亚洲午夜久久久| 日韩成人dvd| 激情国产一区二区| 成人视屏免费看| 在线观看国产日韩| 3d成人动漫网站| 久久在线免费观看| 欧美激情一区二区三区蜜桃视频| 国产精品久久久久久户外露出 | 99re66热这里只有精品3直播 | 国产成人福利片| 99久久99久久精品国产片果冻| av电影在线不卡| 欧美日韩国产成人在线91| 91麻豆精品国产自产在线观看一区 | 91精品国产aⅴ一区二区| 欧美成人激情免费网| 欧美高清在线视频| 亚洲最新视频在线播放| 免费高清不卡av| 不卡免费追剧大全电视剧网站| 在线观看一区不卡| 26uuu色噜噜精品一区二区| 国产精品麻豆欧美日韩ww| 亚洲国产成人91porn| 精品一区二区久久| 色综合天天天天做夜夜夜夜做| 欧美精品三级在线观看| 国产日韩影视精品| 亚洲国产aⅴ天堂久久| 国产寡妇亲子伦一区二区| 在线看国产日韩| 国产精品美女久久久久av爽李琼 | 欧美高清在线一区二区| 五月天激情综合网| 粗大黑人巨茎大战欧美成人| 欧美日韩第一区日日骚| 国产欧美综合在线观看第十页| 亚洲国产综合视频在线观看| 国产精品一区二区久激情瑜伽| 欧美午夜免费电影| 国产精品三级视频| 日韩成人免费在线| 色诱视频网站一区| 国产视频911| 麻豆freexxxx性91精品| 91麻豆国产自产在线观看| 亚洲精品在线电影| 日本va欧美va欧美va精品| 92精品国产成人观看免费| 精品国产3级a| 蜜臀精品一区二区三区在线观看| 91网站在线观看视频| 久久婷婷国产综合国色天香| 亚洲一区二区三区四区的| 成人美女视频在线观看18| 欧美电影免费观看高清完整版 | 亚洲精品日产精品乱码不卡| 国产在线精品一区在线观看麻豆| 欧美日本在线看| 亚洲老司机在线| av在线播放不卡| 中文字幕第一区| 国产一区日韩二区欧美三区| 欧美一级片免费看| 五月天一区二区三区| 欧美日精品一区视频| 国产精品久久久久久久久果冻传媒| 国产一区二区中文字幕| 日韩一级二级三级| 日韩精品亚洲专区| 欧美日韩黄视频| 亚洲第一成年网| 欧美精品一级二级| 肉色丝袜一区二区| 欧美精品三级日韩久久| 午夜精品福利在线| 正在播放一区二区| 奇米四色…亚洲| 精品少妇一区二区三区在线视频| 日av在线不卡| 国产精品萝li| 91视频com| 亚洲影院理伦片| 欧美三级韩国三级日本一级| 亚洲第一精品在线| 日韩一区二区在线观看视频播放| 偷窥少妇高潮呻吟av久久免费| 欧美日韩成人在线| 久久疯狂做爰流白浆xx| 日韩精品资源二区在线| 国模冰冰炮一区二区| 国产午夜精品久久| 91在线精品秘密一区二区| 樱花草国产18久久久久| 欧美在线free| 蜜桃在线一区二区三区| 欧美精品一区二区三| 国产91色综合久久免费分享| 国产精品私房写真福利视频| 92精品国产成人观看免费| 亚洲国产日韩一区二区| 欧美一区二区人人喊爽| 国产福利一区二区三区视频| 国产精品网站导航| 欧美日韩久久久| 激情另类小说区图片区视频区| 国产视频一区在线观看| 色999日韩国产欧美一区二区| 婷婷综合另类小说色区| 久久综合网色—综合色88| 91女神在线视频| 久久精品国产一区二区三区免费看 | 色狠狠av一区二区三区| 蜜桃视频免费观看一区| 欧美韩国日本一区|