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

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

?? opt.h

?? uCOSII2.84在at91sam9263的移植
?? H
?? 第 1 頁(yè) / 共 3 頁(yè)
字號(hào):
/** * LWIP_DNS==1: Turn on DNS module. UDP must be available for DNS * transport. */#ifndef LWIP_DNS#define LWIP_DNS                        0#endif/** DNS maximum number of entries to maintain locally. */#ifndef DNS_TABLE_SIZE#define DNS_TABLE_SIZE                  4#endif/** DNS maximum host name length supported in the name table. */#ifndef DNS_MAX_NAME_LENGTH#define DNS_MAX_NAME_LENGTH             256#endif/** The maximum of DNS servers */#ifndef DNS_MAX_SERVERS#define DNS_MAX_SERVERS                 2#endif/** DNS do a name checking between the query and the response. */#ifndef DNS_DOES_NAME_CHECK#define DNS_DOES_NAME_CHECK             1#endif/** DNS use a local buffer if DNS_USES_STATIC_BUF=0, a static one if    DNS_USES_STATIC_BUF=1, or a dynamic one if DNS_USES_STATIC_BUF=2.    The buffer will be of size DNS_MSG_SIZE */#ifndef DNS_USES_STATIC_BUF#define DNS_USES_STATIC_BUF             1#endif/** DNS message max. size. Default value is RFC compliant. */#ifndef DNS_MSG_SIZE#define DNS_MSG_SIZE                    512#endif/*   ---------------------------------   ---------- UDP options ----------   ---------------------------------*//** * LWIP_UDP==1: Turn on UDP. */#ifndef LWIP_UDP#define LWIP_UDP                        1#endif/** * LWIP_UDPLITE==1: Turn on UDP-Lite. (Requires LWIP_UDP) */#ifndef LWIP_UDPLITE#define LWIP_UDPLITE                    0#endif/** * UDP_TTL: Default Time-To-Live value. */#ifndef UDP_TTL#define UDP_TTL                         (IP_DEFAULT_TTL)#endif/*   ---------------------------------   ---------- TCP options ----------   ---------------------------------*//** * LWIP_TCP==1: Turn on TCP. */#ifndef LWIP_TCP#define LWIP_TCP                        1#endif/** * TCP_TTL: Default Time-To-Live value. */#ifndef TCP_TTL#define TCP_TTL                         (IP_DEFAULT_TTL)#endif/** * TCP_WND: The size of a TCP window. */#ifndef TCP_WND#define TCP_WND                         2048#endif /** * TCP_MAXRTX: Maximum number of retransmissions of data segments. */#ifndef TCP_MAXRTX#define TCP_MAXRTX                      12#endif/** * TCP_SYNMAXRTX: Maximum number of retransmissions of SYN segments. */#ifndef TCP_SYNMAXRTX#define TCP_SYNMAXRTX                   6#endif/** * TCP_QUEUE_OOSEQ==1: TCP will queue segments that arrive out of order. * Define to 0 if your device is low on memory. */#ifndef TCP_QUEUE_OOSEQ#define TCP_QUEUE_OOSEQ                 1#endif/** * TCP_MSS: TCP Maximum segment size. (default is 128, a *very* * conservative default.) * For the receive side, this MSS is advertised to the remote side * when opening a connection. For the transmit size, this MSS sets * an upper limit on the MSS advertised by the remote host. */#ifndef TCP_MSS#define TCP_MSS                         128#endif/** * TCP_CALCULATE_EFF_SEND_MSS: "The maximum size of a segment that TCP really * sends, the 'effective send MSS,' MUST be the smaller of the send MSS (which * reflects the available reassembly buffer size at the remote host) and the * largest size permitted by the IP layer" (RFC 1122) * Setting this to 1 enables code that checks TCP_MSS against the MTU of the * netif used for a connection and limits the MSS if it would be too big otherwise. */#ifndef TCP_CALCULATE_EFF_SEND_MSS#define TCP_CALCULATE_EFF_SEND_MSS      1#endif/** * TCP_SND_BUF: TCP sender buffer space (bytes).  */#ifndef TCP_SND_BUF#define TCP_SND_BUF                     256#endif/** * TCP_SND_QUEUELEN: TCP sender buffer space (pbufs). This must be at least * as much as (2 * TCP_SND_BUF/TCP_MSS) for things to work. */#ifndef TCP_SND_QUEUELEN#define TCP_SND_QUEUELEN                (4 * (TCP_SND_BUF/TCP_MSS))#endif/** * TCP_SNDLOWAT: TCP writable space (bytes). This must be less than or equal * to TCP_SND_BUF. It is the amount of space which must be available in the * TCP snd_buf for select to return writable. */#ifndef TCP_SNDLOWAT#define TCP_SNDLOWAT                    (TCP_SND_BUF/2)#endif/** * TCP_LISTEN_BACKLOG: Enable the backlog option for tcp listen pcb. */#ifndef TCP_LISTEN_BACKLOG#define TCP_LISTEN_BACKLOG              0#endif/** * The maximum allowed backlog for TCP listen netconns. * This backlog is used unless another is explicitly specified. * 0xff is the maximum (u8_t). */#ifndef TCP_DEFAULT_LISTEN_BACKLOG#define TCP_DEFAULT_LISTEN_BACKLOG      0xff#endif/** * LWIP_EVENT_API and LWIP_CALLBACK_API: Only one of these should be set to 1. *     LWIP_EVENT_API==1: The user defines lwip_tcp_event() to receive all *         events (accept, sent, etc) that happen in the system. *     LWIP_CALLBACK_API==1: The PCB callback function is called directly *         for the event. */#ifndef LWIP_EVENT_API#define LWIP_EVENT_API                  0#define LWIP_CALLBACK_API               1#else #define LWIP_EVENT_API                  1#define LWIP_CALLBACK_API               0#endif/*   ----------------------------------   ---------- Pbuf options ----------   ----------------------------------*//** * PBUF_LINK_HLEN: the number of bytes that should be allocated for a * link level header. The default is 14, the standard value for * Ethernet. */#ifndef PBUF_LINK_HLEN#define PBUF_LINK_HLEN                  14#endif/** * PBUF_POOL_BUFSIZE: the size of each pbuf in the pbuf pool. The default is * designed to accomodate single full size TCP frame in one pbuf, including * TCP_MSS, IP header, and link header. */#ifndef PBUF_POOL_BUFSIZE#define PBUF_POOL_BUFSIZE               LWIP_MEM_ALIGN_SIZE(TCP_MSS+40+PBUF_LINK_HLEN)#endif/*   ------------------------------------------------   ---------- Network Interfaces options ----------   ------------------------------------------------*//** * LWIP_NETIF_HOSTNAME==1: use DHCP_OPTION_HOSTNAME with netif's hostname * field. */#ifndef LWIP_NETIF_HOSTNAME#define LWIP_NETIF_HOSTNAME             0#endif/** * LWIP_NETIF_API==1: Support netif api (in netifapi.c) */#ifndef LWIP_NETIF_API#define LWIP_NETIF_API                  0#endif/** * LWIP_NETIF_STATUS_CALLBACK==1: Support a callback function whenever an interface * changes its up/down status (i.e., due to DHCP IP acquistion) */#ifndef LWIP_NETIF_STATUS_CALLBACK#define LWIP_NETIF_STATUS_CALLBACK      0#endif/** * LWIP_NETIF_LINK_CALLBACK==1: Support a callback function from an interface * whenever the link changes (i.e., link down) */#ifndef LWIP_NETIF_LINK_CALLBACK#define LWIP_NETIF_LINK_CALLBACK        0#endif/** * LWIP_NETIF_HWADDRHINT==1: Cache link-layer-address hints (e.g. table * indices) in struct netif. TCP and UDP can make use of this to prevent * scanning the ARP table for every sent packet. While this is faster for big * ARP tables or many concurrent connections, it might be counterproductive * if you have a tiny ARP table or if there never are concurrent connections. */#ifndef LWIP_NETIF_HWADDRHINT#define LWIP_NETIF_HWADDRHINT           0#endif/*   ------------------------------------   ---------- LOOPIF options ----------   ------------------------------------*//** * LWIP_HAVE_LOOPIF==1: Support loop interface (127.0.0.1) and loopif.c */#ifndef LWIP_HAVE_LOOPIF#define LWIP_HAVE_LOOPIF                0#endif/** * LWIP_LOOPIF_MULTITHREADING: Indicates whether threading is enabled in * the system, as LOOPIF must change how it behaves depending on this setting. * Setting this is needed to avoid reentering non-reentrant functions like * tcp_input(). *    LWIP_LOOPIF_MULTITHREADING==1: Indicates that the user is using a *       multithreaded environment like tcpip.c. In this case, netif->input() *       is called directly. *    LWIP_LOOPIF_MULTITHREADING==0: Indicates a polling (or NO_SYS) setup. *       The packets are put on a list and loopif_poll() must be called in *       the main application loop. */#ifndef LWIP_LOOPIF_MULTITHREADING#define LWIP_LOOPIF_MULTITHREADING      1#endif/*   ------------------------------------   ---------- Thread options ----------   ------------------------------------*//** * TCPIP_THREAD_NAME: The name assigned to the main tcpip thread. */#ifndef TCPIP_THREAD_NAME#define TCPIP_THREAD_NAME              "tcpip_thread"#endif/** * TCPIP_THREAD_STACKSIZE: The stack size used by the main tcpip thread. * The stack size value itself is platform-dependent, but is passed to * sys_thread_new() when the thread is created. */#ifndef TCPIP_THREAD_STACKSIZE#define TCPIP_THREAD_STACKSIZE          0#endif/** * TCPIP_THREAD_PRIO: The priority assigned to the main tcpip thread. * The priority value itself is platform-dependent, but is passed to * sys_thread_new() when the thread is created. */#ifndef TCPIP_THREAD_PRIO#define TCPIP_THREAD_PRIO               1#endif/** * TCPIP_MBOX_SIZE: The mailbox size for the tcpip thread messages * The queue size value itself is platform-dependent, but is passed to * sys_mbox_new() when tcpip_init is called. */#ifndef TCPIP_MBOX_SIZE#define TCPIP_MBOX_SIZE                 0#endif/** * SLIPIF_THREAD_NAME: The name assigned to the slipif_loop thread. */#ifndef SLIPIF_THREAD_NAME#define SLIPIF_THREAD_NAME             "slipif_loop"#endif/** * SLIP_THREAD_STACKSIZE: The stack size used by the slipif_loop thread. * The stack size value itself is platform-dependent, but is passed to * sys_thread_new() when the thread is created. */#ifndef SLIPIF_THREAD_STACKSIZE#define SLIPIF_THREAD_STACKSIZE         0#endif/** * SLIPIF_THREAD_PRIO: The priority assigned to the slipif_loop thread. * The priority value itself is platform-dependent, but is passed to * sys_thread_new() when the thread is created. */#ifndef SLIPIF_THREAD_PRIO#define SLIPIF_THREAD_PRIO              1#endif/** * PPP_THREAD_NAME: The name assigned to the pppMain thread. */#ifndef PPP_THREAD_NAME#define PPP_THREAD_NAME                "pppMain"#endif/** * PPP_THREAD_STACKSIZE: The stack size used by the pppMain thread. * The stack size value itself is platform-dependent, but is passed to * sys_thread_new() when the thread is created. */#ifndef PPP_THREAD_STACKSIZE#define PPP_THREAD_STACKSIZE            0#endif/** * PPP_THREAD_PRIO: The priority assigned to the pppMain thread. * The priority value itself is platform-dependent, but is passed to * sys_thread_new() when the thread is created. */#ifndef PPP_THREAD_PRIO#define PPP_THREAD_PRIO                 1#endif/** * DEFAULT_THREAD_NAME: The name assigned to any other lwIP thread. */#ifndef DEFAULT_THREAD_NAME#define DEFAULT_THREAD_NAME            "lwIP"#endif/** * DEFAULT_THREAD_STACKSIZE: The stack size used by any other lwIP thread. * The stack size value itself is platform-dependent, but is passed to * sys_thread_new() when the thread is created. */#ifndef DEFAULT_THREAD_STACKSIZE#define DEFAULT_THREAD_STACKSIZE        0#endif/** * DEFAULT_THREAD_PRIO: The priority assigned to any other lwIP thread. * The priority value itself is platform-dependent, but is passed to * sys_thread_new() when the thread is created. */#ifndef DEFAULT_THREAD_PRIO#define DEFAULT_THREAD_PRIO             1#endif/** * DEFAULT_RAW_RECVMBOX_SIZE: The mailbox size for the incoming packets on a * NETCONN_RAW. The queue size value itself is platform-dependent, but is passed * to sys_mbox_new() when the recvmbox is created. */#ifndef DEFAULT_RAW_RECVMBOX_SIZE#define DEFAULT_RAW_RECVMBOX_SIZE       0#endif/** * DEFAULT_UDP_RECVMBOX_SIZE: The mailbox size for the incoming packets on a * NETCONN_UDP. The queue size value itself is platform-dependent, but is passed * to sys_mbox_new() when the recvmbox is created. */#ifndef DEFAULT_UDP_RECVMBOX_SIZE#define DEFAULT_UDP_RECVMBOX_SIZE       0#endif/** * DEFAULT_TCP_RECVMBOX_SIZE: The mailbox size for the incoming packets on a * NETCONN_TCP. The queue size value itself is platform-dependent, but is passed * to sys_mbox_new() when the recvmbox is created. */#ifndef DEFAULT_TCP_RECVMBOX_SIZE#define DEFAULT_TCP_RECVMBOX_SIZE       0#endif/** * DEFAULT_ACCEPTMBOX_SIZE: The mailbox size for the incoming connections. * The queue size value itself is platform-dependent, but is passed to * sys_mbox_new() when the acceptmbox is created. */#ifndef DEFAULT_ACCEPTMBOX_SIZE#define DEFAULT_ACCEPTMBOX_SIZE         0#endif/*   ----------------------------------------------   ---------- Sequential layer options ----------   ----------------------------------------------*//** * LWIP_TCPIP_CORE_LOCKING: (EXPERIMENTAL!) * Don't use it if you're not an active lwIP project member */#ifndef LWIP_TCPIP_CORE_LOCKING#define LWIP_TCPIP_CORE_LOCKING         0#endif/** * LWIP_NETCONN==1: Enable Netconn API (require to use api_lib.c) */#ifndef LWIP_NETCONN#define LWIP_NETCONN                    1#endif/*   ------------------------------------   ---------- Socket options ----------   ------------------------------------*//** * LWIP_SOCKET==1: Enable Socket API (require to use sockets.c) */#ifndef LWIP_SOCKET#define LWIP_SOCKET                     1#endif/** * LWIP_COMPAT_SOCKETS==1: Enable BSD-style sockets functions names. * (only used if you use sockets.c) */#ifndef LWIP_COMPAT_SOCKETS#define LWIP_COMPAT_SOCKETS             1#endif/** * LWIP_POSIX_SOCKETS_IO_NAMES==1: Enable POSIX-style sockets functions names. * Disable this option if you use a POSIX operating system that uses the same * names (read, write & close). (only used if you use sockets.c) */#ifndef LWIP_POSIX_SOCKETS_IO_NAMES#define LWIP_POSIX_SOCKETS_IO_NAMES     1#endif/** * LWIP_TCP_KEEPALIVE==1: Enable TCP_KEEPIDLE, TCP_KEEPINTVL and TCP_KEEPCNT * options processing. Note that TCP_KEEPIDLE and TCP_KEEPINTVL have to be set * in seconds. (does not require sockets.c, and will affect tcp.c) */#ifndef LWIP_TCP_KEEPALIVE#define LWIP_TCP_KEEPALIVE              0#endif/** * LWIP_SO_RCVTIMEO==1: Enable SO_RCVTIMEO processing. */#ifndef LWIP_SO_RCVTIMEO#define LWIP_SO_RCVTIMEO                0#endif/** * LWIP_SO_RCVBUF==1: Enable SO_RCVBUF processing. */#ifndef LWIP_SO_RCVBUF#define LWIP_SO_RCVBUF                  0#endif/** * SO_REUSE==1: Enable SO_REUSEADDR and SO_REUSEPORT options. DO NOT USE! */#ifndef SO_REUSE#define SO_REUSE                        0#endif/*   ----------------------------------------   ---------- Statistics options ----------   ----------------------------------------*//** * LWIP_STATS==1: Enable statistics collection in lwip_stats. */#ifndef LWIP_STATS#define LWIP_STATS                      1#endif#if LWIP_STATS/** * LWIP_STATS_DISPLAY==1: Compile in the statistics output functions. */#ifndef LWIP_STATS_DISPLAY#define LWIP_STATS_DISPLAY              0#endif/** * LINK_STATS==1: Enable link stats. */#ifndef LINK_STATS#define LINK_STATS                      1#endif/** * ETHARP_STATS==1: Enable etharp stats. */#ifndef ETHARP_STATS

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
91丨九色丨蝌蚪丨老版| 18欧美亚洲精品| 日韩午夜电影在线观看| 欧美日韩国产首页| 日韩午夜三级在线| 欧美一区二区三区在线观看视频| 欧美色爱综合网| 5566中文字幕一区二区电影| 67194成人在线观看| 日韩午夜激情电影| 久久久影院官网| 国产精品素人一区二区| 成人欧美一区二区三区在线播放| 最新国产成人在线观看| 亚洲精品一二三四区| 亚洲蜜臀av乱码久久精品| 亚洲一区二区偷拍精品| 亚洲成人手机在线| 另类欧美日韩国产在线| 国产真实乱偷精品视频免| 国产91丝袜在线观看| a美女胸又www黄视频久久| 99国产精品国产精品久久| 欧美性三三影院| 884aa四虎影成人精品一区| 欧美成人aa大片| 欧美高清在线一区| 亚洲精品成人在线| 青青草视频一区| 国产精品自产自拍| 91伊人久久大香线蕉| 欧美网站大全在线观看| 日韩视频一区二区三区| 亚洲国产精品成人综合| 一区二区三区视频在线看| 全部av―极品视觉盛宴亚洲| 狠狠色丁香久久婷婷综合丁香| 国产盗摄精品一区二区三区在线 | 国产成+人+日韩+欧美+亚洲| 91在线云播放| 欧美一区二区三区视频免费| 久久精品日产第一区二区三区高清版 | 欧美午夜精品理论片a级按摩| 91精品国产91久久久久久最新毛片 | 久久久久综合网| 亚洲一区二区三区四区不卡| 青青草97国产精品免费观看无弹窗版| 黑人巨大精品欧美黑白配亚洲| 99国产精品国产精品久久| 欧美一区二区视频在线观看| 国产精品入口麻豆九色| 首页亚洲欧美制服丝腿| 成人性生交大片免费看视频在线 | 国产精品国产三级国产aⅴ无密码 国产精品国产三级国产aⅴ原创 | www.亚洲色图| 正在播放亚洲一区| 欧美激情一区二区三区不卡| 午夜久久久久久久久久一区二区| 国产精品一区二区果冻传媒| 欧美日精品一区视频| 久久久久久久综合日本| 亚洲午夜免费福利视频| 91免费版pro下载短视频| 91精品欧美久久久久久动漫 | 成人在线综合网站| 欧美一区在线视频| 亚洲欧美经典视频| 国产成人av电影在线| 欧美日韩精品系列| 亚洲摸摸操操av| 懂色一区二区三区免费观看| 日韩一区二区三区三四区视频在线观看 | 欧美日韩一区二区在线观看视频| 欧美国产综合一区二区| 麻豆一区二区在线| 欧美在线免费观看亚洲| 中文字幕一区二区三区蜜月| 久久精品99国产精品| 欧美系列日韩一区| 综合激情成人伊人| 成人午夜免费av| www激情久久| 麻豆一区二区在线| 欧美福利电影网| 亚洲一级不卡视频| 91久久精品一区二区三区| 国产精品黄色在线观看| 国产精品亚洲第一区在线暖暖韩国| 欧美一区二区三区视频免费| 午夜欧美在线一二页| 欧美色图免费看| 亚洲综合小说图片| 在线影院国内精品| 亚洲狠狠丁香婷婷综合久久久| 国产999精品久久久久久| 精品日韩在线观看| 久久se这里有精品| 日韩女优av电影| 天堂久久一区二区三区| 欧美日韩国产综合草草| 亚洲综合999| 91麻豆自制传媒国产之光| 国产精品久久久久影院色老大| 国产资源在线一区| 久久久亚洲精品石原莉奈 | 欧美视频中文字幕| 亚洲一区二区三区三| 色综合亚洲欧洲| 亚洲黄色小视频| 日本精品免费观看高清观看| 艳妇臀荡乳欲伦亚洲一区| 欧美无乱码久久久免费午夜一区| 一区二区三区欧美在线观看| 欧美亚洲动漫制服丝袜| 一区二区三区日韩| 欧美日韩视频不卡| 美女mm1313爽爽久久久蜜臀| 精品国产乱码久久久久久免费 | 精品久久久久av影院| 极品美女销魂一区二区三区免费| 久久久www成人免费毛片麻豆| 高清不卡在线观看| 伊人开心综合网| 欧美人与性动xxxx| 蜜臂av日日欢夜夜爽一区| 久久久国产午夜精品| 91视频你懂的| 天天影视色香欲综合网老头| 欧美大片拔萝卜| 欧美猛男gaygay网站| 麻豆精品一二三| 国产婷婷色一区二区三区 | 国产欧美精品一区二区三区四区| 成人国产亚洲欧美成人综合网| 亚洲欧美综合色| 欧美女孩性生活视频| 国产在线看一区| 亚洲色图自拍偷拍美腿丝袜制服诱惑麻豆 | 色先锋aa成人| 免费在线观看精品| 亚洲国产成人一区二区三区| 欧洲另类一二三四区| 另类小说视频一区二区| 国产精品理伦片| 欧美日韩美女一区二区| 国产成人丝袜美腿| 亚洲福利视频导航| 26uuu精品一区二区三区四区在线| 99精品视频一区| 青椒成人免费视频| 亚洲欧洲精品一区二区精品久久久| 7777精品伊人久久久大香线蕉的| 国产精品一区二区果冻传媒| 亚洲在线视频免费观看| 久久亚洲影视婷婷| 欧美日韩中文字幕精品| 国产精品一级二级三级| 亚洲成在人线在线播放| 中文字幕第一区二区| 91精品婷婷国产综合久久性色 | 91久久精品网| 国产精品一区二区无线| 亚洲国产日韩一区二区| 欧美国产日本韩| 欧美成人欧美edvon| 欧美亚洲禁片免费| av成人动漫在线观看| 伦理电影国产精品| 亚洲一区二区三区四区五区中文| 国产欧美日韩一区二区三区在线观看| 欧美性大战久久| 91蝌蚪porny| 国产精品456| 蜜桃av噜噜一区二区三区小说| 亚洲激情图片qvod| 欧美国产视频在线| 精品免费国产一区二区三区四区| 色婷婷av一区二区三区之一色屋| 国产一区二区三区久久久| 午夜精品123| 亚洲午夜三级在线| 亚洲男人天堂av网| 国产精品三级视频| 国产午夜精品在线观看| 欧美成人在线直播| 欧美日韩精品福利| 色综合天天综合狠狠| 粉嫩aⅴ一区二区三区四区| 国产一区二区在线电影| 老司机精品视频一区二区三区| 亚洲国产视频a| 亚洲一区精品在线| 亚洲免费毛片网站| 亚洲精选在线视频| 亚洲欧美另类小说| 一区二区三区欧美视频| 亚洲欧美国产77777| 亚洲人成小说网站色在线 | 欧美午夜视频网站| 在线免费视频一区二区|