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

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

?? opt.h

?? uCOSII2.84在at91sam9263的移植
?? H
?? 第 1 頁 / 共 3 頁
字號:
#define ETHARP_STATS                    (LWIP_ARP)#endif/** * IP_STATS==1: Enable IP stats. */#ifndef IP_STATS#define IP_STATS                        1#endif/** * IPFRAG_STATS==1: Enable IP fragmentation stats. Default is * on if using either frag or reass. */#ifndef IPFRAG_STATS#define IPFRAG_STATS                    (IP_REASSEMBLY || IP_FRAG)#endif/** * ICMP_STATS==1: Enable ICMP stats. */#ifndef ICMP_STATS#define ICMP_STATS                      1#endif/** * IGMP_STATS==1: Enable IGMP stats. */#ifndef IGMP_STATS#define IGMP_STATS                      (LWIP_IGMP)#endif/** * UDP_STATS==1: Enable UDP stats. Default is on if * UDP enabled, otherwise off. */#ifndef UDP_STATS#define UDP_STATS                       (LWIP_UDP)#endif/** * TCP_STATS==1: Enable TCP stats. Default is on if TCP * enabled, otherwise off. */#ifndef TCP_STATS#define TCP_STATS                       (LWIP_TCP)#endif/** * MEM_STATS==1: Enable mem.c stats. */#ifndef MEM_STATS#define MEM_STATS                       1#endif/** * MEMP_STATS==1: Enable memp.c pool stats. */#ifndef MEMP_STATS#define MEMP_STATS                      1#endif/** * SYS_STATS==1: Enable system stats (sem and mbox counts, etc). */#ifndef SYS_STATS#define SYS_STATS                       1#endif#else#define LINK_STATS                      0#define IP_STATS                        0#define IPFRAG_STATS                    0#define ICMP_STATS                      0#define IGMP_STATS                      0#define UDP_STATS                       0#define TCP_STATS                       0#define MEM_STATS                       0#define MEMP_STATS                      0#define SYS_STATS                       0#define LWIP_STATS_DISPLAY              0#endif /* LWIP_STATS *//*   ---------------------------------   ---------- PPP options ----------   ---------------------------------*//** * PPP_SUPPORT==1: Enable PPP. */#ifndef PPP_SUPPORT#define PPP_SUPPORT                     0#endif/** * PPPOE_SUPPORT==1: Enable PPP Over Ethernet */#ifndef PPPOE_SUPPORT#define PPPOE_SUPPORT                   0#endif/** * PPPOS_SUPPORT==1: Enable PPP Over Serial */#ifndef PPPOS_SUPPORT#define PPPOS_SUPPORT                   PPP_SUPPORT#endif#if PPP_SUPPORT/** * NUM_PPP: Max PPP sessions. */#ifndef NUM_PPP#define NUM_PPP                         1#endif/** * PAP_SUPPORT==1: Support PAP. */#ifndef PAP_SUPPORT#define PAP_SUPPORT                     0#endif/** * CHAP_SUPPORT==1: Support CHAP. */#ifndef CHAP_SUPPORT#define CHAP_SUPPORT                    0#endif/** * MSCHAP_SUPPORT==1: Support MSCHAP. CURRENTLY NOT SUPPORTED! DO NOT SET! */#ifndef MSCHAP_SUPPORT#define MSCHAP_SUPPORT                  0#endif/** * CBCP_SUPPORT==1: Support CBCP. CURRENTLY NOT SUPPORTED! DO NOT SET! */#ifndef CBCP_SUPPORT#define CBCP_SUPPORT                    0#endif/** * CCP_SUPPORT==1: Support CCP. CURRENTLY NOT SUPPORTED! DO NOT SET! */#ifndef CCP_SUPPORT#define CCP_SUPPORT                     0#endif/** * VJ_SUPPORT==1: Support VJ header compression. */#ifndef VJ_SUPPORT#define VJ_SUPPORT                      0#endif/** * MD5_SUPPORT==1: Support MD5 (see also CHAP). */#ifndef MD5_SUPPORT#define MD5_SUPPORT                     0#endif/* * Timeouts */#ifndef FSM_DEFTIMEOUT#define FSM_DEFTIMEOUT                  6       /* Timeout time in seconds */#endif#ifndef FSM_DEFMAXTERMREQS#define FSM_DEFMAXTERMREQS              2       /* Maximum Terminate-Request transmissions */#endif#ifndef FSM_DEFMAXCONFREQS#define FSM_DEFMAXCONFREQS              10      /* Maximum Configure-Request transmissions */#endif#ifndef FSM_DEFMAXNAKLOOPS#define FSM_DEFMAXNAKLOOPS              5       /* Maximum number of nak loops */#endif#ifndef UPAP_DEFTIMEOUT#define UPAP_DEFTIMEOUT                 6       /* Timeout (seconds) for retransmitting req */#endif#ifndef UPAP_DEFREQTIME#define UPAP_DEFREQTIME                 30      /* Time to wait for auth-req from peer */#endif#ifndef CHAP_DEFTIMEOUT#define CHAP_DEFTIMEOUT                 6       /* Timeout time in seconds */#endif#ifndef CHAP_DEFTRANSMITS#define CHAP_DEFTRANSMITS               10      /* max # times to send challenge */#endif/* Interval in seconds between keepalive echo requests, 0 to disable. */#ifndef LCP_ECHOINTERVAL#define LCP_ECHOINTERVAL                0#endif/* Number of unanswered echo requests before failure. */#ifndef LCP_MAXECHOFAILS#define LCP_MAXECHOFAILS                3#endif/* Max Xmit idle time (in jiffies) before resend flag char. */#ifndef PPP_MAXIDLEFLAG#define PPP_MAXIDLEFLAG                 100#endif/* * Packet sizes * * Note - lcp shouldn't be allowed to negotiate stuff outside these *    limits.  See lcp.h in the pppd directory. * (XXX - these constants should simply be shared by lcp.c instead *    of living in lcp.h) */#define PPP_MTU                         1500     /* Default MTU (size of Info field) */#ifndef PPP_MAXMTU/* #define PPP_MAXMTU  65535 - (PPP_HDRLEN + PPP_FCSLEN) */#define PPP_MAXMTU                      1500 /* Largest MTU we allow */#endif#define PPP_MINMTU                      64#define PPP_MRU                         1500     /* default MRU = max length of info field */#define PPP_MAXMRU                      1500     /* Largest MRU we allow */#ifndef PPP_DEFMRU#define PPP_DEFMRU                      296             /* Try for this */#endif#define PPP_MINMRU                      128             /* No MRUs below this */#define MAXNAMELEN                      256     /* max length of hostname or name for auth */#define MAXSECRETLEN                    256     /* max length of password or secret */#endif /* PPP_SUPPORT *//*   --------------------------------------   ---------- Checksum options ----------   --------------------------------------*//** * CHECKSUM_GEN_IP==1: Generate checksums in software for outgoing IP packets. */#ifndef CHECKSUM_GEN_IP#define CHECKSUM_GEN_IP                 1#endif /** * CHECKSUM_GEN_UDP==1: Generate checksums in software for outgoing UDP packets. */#ifndef CHECKSUM_GEN_UDP#define CHECKSUM_GEN_UDP                1#endif /** * CHECKSUM_GEN_TCP==1: Generate checksums in software for outgoing TCP packets. */#ifndef CHECKSUM_GEN_TCP#define CHECKSUM_GEN_TCP                1#endif /** * CHECKSUM_CHECK_IP==1: Check checksums in software for incoming IP packets. */#ifndef CHECKSUM_CHECK_IP#define CHECKSUM_CHECK_IP               1#endif /** * CHECKSUM_CHECK_UDP==1: Check checksums in software for incoming UDP packets. */#ifndef CHECKSUM_CHECK_UDP#define CHECKSUM_CHECK_UDP              1#endif/** * CHECKSUM_CHECK_TCP==1: Check checksums in software for incoming TCP packets. */#ifndef CHECKSUM_CHECK_TCP#define CHECKSUM_CHECK_TCP              1#endif/*   ---------------------------------------   ---------- Debugging options ----------   ---------------------------------------*//** * LWIP_DBG_MIN_LEVEL: After masking, the value of the debug is * compared against this value. If it is smaller, then debugging * messages are written. */ #ifndef LWIP_DBG_MIN_LEVEL//#define LWIP_DBG_MIN_LEVEL              LWIP_DBG_LEVEL_OFF#define LWIP_DBG_MIN_LEVEL                LWIP_DBG_LEVEL_WARNING#endif/** * LWIP_DBG_TYPES_ON: A mask that can be used to globally enable/disable * debug messages of certain types. */#ifndef LWIP_DBG_TYPES_ON#define LWIP_DBG_TYPES_ON               LWIP_DBG_ON#endif/** * ETHARP_DEBUG: Enable debugging in etharp.c. */#ifndef ETHARP_DEBUG#define ETHARP_DEBUG                    LWIP_DBG_ON#endif/** * NETIF_DEBUG: Enable debugging in netif.c. */#ifndef NETIF_DEBUG#define NETIF_DEBUG                     LWIP_DBG_ON#endif/** * PBUF_DEBUG: Enable debugging in pbuf.c. */#ifndef PBUF_DEBUG#define PBUF_DEBUG                      LWIP_DBG_ON#endif/** * API_LIB_DEBUG: Enable debugging in api_lib.c. */#ifndef API_LIB_DEBUG#define API_LIB_DEBUG                   LWIP_DBG_ON#endif/** * API_MSG_DEBUG: Enable debugging in api_msg.c. */#ifndef API_MSG_DEBUG#define API_MSG_DEBUG                   LWIP_DBG_ON#endif/** * SOCKETS_DEBUG: Enable debugging in sockets.c. */#ifndef SOCKETS_DEBUG#define SOCKETS_DEBUG                   LWIP_DBG_ON#endif/** * ICMP_DEBUG: Enable debugging in icmp.c. */#ifndef ICMP_DEBUG#define ICMP_DEBUG                      LWIP_DBG_ON#endif/** * IGMP_DEBUG: Enable debugging in igmp.c. */#ifndef IGMP_DEBUG#define IGMP_DEBUG                      LWIP_DBG_ON#endif/** * INET_DEBUG: Enable debugging in inet.c. */#ifndef INET_DEBUG#define INET_DEBUG                      LWIP_DBG_ON#endif/** * IP_DEBUG: Enable debugging for IP. */#ifndef IP_DEBUG#define IP_DEBUG                        LWIP_DBG_ON#endif/** * IP_REASS_DEBUG: Enable debugging in ip_frag.c for both frag & reass. */#ifndef IP_REASS_DEBUG#define IP_REASS_DEBUG                  LWIP_DBG_ON#endif/** * RAW_DEBUG: Enable debugging in raw.c. */#ifndef RAW_DEBUG#define RAW_DEBUG                       LWIP_DBG_ON#endif/** * MEM_DEBUG: Enable debugging in mem.c. */#ifndef MEM_DEBUG#define MEM_DEBUG                       LWIP_DBG_ON#endif/** * MEMP_DEBUG: Enable debugging in memp.c. */#ifndef MEMP_DEBUG#define MEMP_DEBUG                      LWIP_DBG_ON#endif/** * SYS_DEBUG: Enable debugging in sys.c. */#ifndef SYS_DEBUG#define SYS_DEBUG                       LWIP_DBG_ON#endif/** * TCP_DEBUG: Enable debugging for TCP. */#ifndef TCP_DEBUG#define TCP_DEBUG                       LWIP_DBG_ON#endif/** * TCP_INPUT_DEBUG: Enable debugging in tcp_in.c for incoming debug. */#ifndef TCP_INPUT_DEBUG#define TCP_INPUT_DEBUG                 LWIP_DBG_ON#endif/** * TCP_FR_DEBUG: Enable debugging in tcp_in.c for fast retransmit. */#ifndef TCP_FR_DEBUG#define TCP_FR_DEBUG                    LWIP_DBG_ON#endif/** * TCP_RTO_DEBUG: Enable debugging in TCP for retransmit * timeout. */#ifndef TCP_RTO_DEBUG#define TCP_RTO_DEBUG                   LWIP_DBG_ON#endif/** * TCP_CWND_DEBUG: Enable debugging for TCP congestion window. */#ifndef TCP_CWND_DEBUG#define TCP_CWND_DEBUG                  LWIP_DBG_ON#endif/** * TCP_WND_DEBUG: Enable debugging in tcp_in.c for window updating. */#ifndef TCP_WND_DEBUG#define TCP_WND_DEBUG                   LWIP_DBG_ON#endif/** * TCP_OUTPUT_DEBUG: Enable debugging in tcp_out.c output functions. */#ifndef TCP_OUTPUT_DEBUG#define TCP_OUTPUT_DEBUG                LWIP_DBG_ON#endif/** * TCP_RST_DEBUG: Enable debugging for TCP with the RST message. */#ifndef TCP_RST_DEBUG#define TCP_RST_DEBUG                   LWIP_DBG_ON#endif/** * TCP_QLEN_DEBUG: Enable debugging for TCP queue lengths. */#ifndef TCP_QLEN_DEBUG#define TCP_QLEN_DEBUG                  LWIP_DBG_ON#endif/** * UDP_DEBUG: Enable debugging in UDP. */#ifndef UDP_DEBUG#define UDP_DEBUG                       LWIP_DBG_ON#endif/** * TCPIP_DEBUG: Enable debugging in tcpip.c. */#ifndef TCPIP_DEBUG#define TCPIP_DEBUG                     LWIP_DBG_ON#endif/** * PPP_DEBUG: Enable debugging for PPP. */#ifndef PPP_DEBUG#define PPP_DEBUG                       LWIP_DBG_ON#endif/** * SLIP_DEBUG: Enable debugging in slipif.c. */#ifndef SLIP_DEBUG#define SLIP_DEBUG                      LWIP_DBG_ON#endif/** * DHCP_DEBUG: Enable debugging in dhcp.c. */#ifndef DHCP_DEBUG#define DHCP_DEBUG                      LWIP_DBG_ON#endif/** * AUTOIP_DEBUG: Enable debugging in autoip.c. */#ifndef AUTOIP_DEBUG#define AUTOIP_DEBUG                    LWIP_DBG_ON#endif/** * SNMP_MSG_DEBUG: Enable debugging for SNMP messages. */#ifndef SNMP_MSG_DEBUG#define SNMP_MSG_DEBUG                  LWIP_DBG_ON#endif/** * SNMP_MIB_DEBUG: Enable debugging for SNMP MIBs. */#ifndef SNMP_MIB_DEBUG#define SNMP_MIB_DEBUG                  LWIP_DBG_ON#endif/** * DNS_DEBUG: Enable debugging for DNS. */#ifndef DNS_DEBUG#define DNS_DEBUG                       LWIP_DBG_ON#endif#endif /* __LWIP_OPT_H__ */

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美视频中文一区二区三区在线观看| 国产日韩精品一区二区浪潮av| 成人激情av网| 国产精品18久久久久| 蜜桃视频在线观看一区| 日本三级亚洲精品| 天天操天天综合网| 日韩精品电影一区亚洲| 亚洲va韩国va欧美va精品| 亚洲精品成人在线| 亚洲国产日韩a在线播放性色| 亚洲欧美日韩一区二区| 亚洲欧美一区二区三区国产精品 | 欧美一区二区三区免费在线看 | 精品日韩一区二区| 日韩欧美一级二级| 精品国产一二三区| 久久久久久久久久久久久久久99| 精品少妇一区二区三区视频免付费 | 欧美日韩国产综合视频在线观看 | 欧美视频精品在线| 欧美精品自拍偷拍| 精品久久久久久亚洲综合网| 精品va天堂亚洲国产| 久久久91精品国产一区二区精品| 国产日产欧美一区| 亚洲欧洲日本在线| 亚洲午夜激情网页| 老司机精品视频在线| 国产成人精品影视| 91亚洲精品久久久蜜桃| 欧美日韩国产首页在线观看| 91 com成人网| 精品黑人一区二区三区久久| 国产日韩欧美精品在线| 日韩毛片高清在线播放| 三级成人在线视频| 国产精品18久久久久久久网站| 9人人澡人人爽人人精品| 91久久香蕉国产日韩欧美9色| 欧美日韩成人一区二区| 精品电影一区二区三区| 中文字幕一区二区三区视频| 五月综合激情日本mⅴ| 韩国视频一区二区| 91蝌蚪porny| 日韩欧美国产一区在线观看| 中文字幕一区视频| 日韩1区2区3区| eeuss鲁片一区二区三区在线看| 欧美日韩国产另类不卡| 国产午夜精品理论片a级大结局| 亚洲制服丝袜av| 久久国产精品区| www.亚洲免费av| 日韩欧美成人一区| 国产精品久久久久久妇女6080| 亚洲小说欧美激情另类| 国产在线精品一区二区不卡了| 色乱码一区二区三区88| 精品国产91乱码一区二区三区| 日韩一区在线看| 久久电影网站中文字幕| 在线视频你懂得一区| 久久久久国产精品麻豆ai换脸| 国产精品中文字幕日韩精品 | 日韩欧美精品在线视频| 国产精品青草久久| 婷婷六月综合亚洲| 91在线观看一区二区| 日韩免费视频一区| 亚洲影院理伦片| 丁香桃色午夜亚洲一区二区三区| 9191久久久久久久久久久| 国产精品成人免费精品自在线观看 | 亚洲一区二区影院| 成熟亚洲日本毛茸茸凸凹| 欧美一级理论性理论a| 亚洲精品乱码久久久久久日本蜜臀| 国产精品一区二区三区网站| 欧美一区二区视频在线观看2020| 亚洲欧美经典视频| 成人一区在线观看| 欧美精品一区二区蜜臀亚洲| 三级久久三级久久| 欧美在线不卡一区| 最新久久zyz资源站| 国产一区二区精品久久99| 91精品国产综合久久国产大片| 一区二区三区欧美久久| 99久久伊人久久99| 国产三级欧美三级| 国产精品一区在线观看乱码| 91精品国产综合久久久蜜臀粉嫩 | 中文字幕av一区二区三区免费看 | 夫妻av一区二区| 久久久一区二区| 精品一区精品二区高清| 日韩一二三区不卡| 天堂一区二区在线| 欧美日韩1区2区| 亚瑟在线精品视频| 欧美蜜桃一区二区三区 | 99视频一区二区| 国产精品美女一区二区三区 | 一区二区三区日本| 91麻豆产精品久久久久久| 国产精品嫩草影院com| 不卡的电视剧免费网站有什么| 国产精品热久久久久夜色精品三区 | 天堂久久久久va久久久久| 欧美日本国产一区| 午夜不卡av在线| 538在线一区二区精品国产| 亚洲动漫第一页| 亚洲女人的天堂| 97久久人人超碰| 一区二区在线观看视频| 91在线国产福利| 亚洲图片自拍偷拍| 91精品福利在线一区二区三区| 日韩av在线发布| 日韩欧美激情一区| 国产在线播精品第三| 国产女人18毛片水真多成人如厕 | 精品久久久久久综合日本欧美| 精品一区二区三区香蕉蜜桃 | 亚洲一级二级在线| 欧美日本不卡视频| 狠狠色综合日日| 中文字幕电影一区| 91极品视觉盛宴| 日韩av电影免费观看高清完整版| 日韩视频在线观看一区二区| 国产精品亚洲人在线观看| 国产精品国产成人国产三级| 欧美在线观看视频在线| 日韩国产高清影视| 久久久久一区二区三区四区| 91丨porny丨国产入口| 亚洲国产成人av| 日韩欧美第一区| 成人av网站免费观看| 亚洲mv在线观看| 欧美精品一区二区三区蜜桃 | 欧美乱妇23p| 国产真实乱偷精品视频免| 自拍偷拍亚洲激情| 欧美日韩免费观看一区三区| 精品一区二区在线免费观看| 国产精品久久久久久久久免费相片| 欧美综合亚洲图片综合区| 另类欧美日韩国产在线| 中文字幕国产一区| 欧美日韩免费观看一区三区| 国产成人综合在线观看| 一区二区三区日本| 久久天天做天天爱综合色| 色诱亚洲精品久久久久久| 免费成人在线视频观看| 中文字幕在线一区免费| 亚洲男人的天堂在线观看| 欧美一区二区日韩| a级精品国产片在线观看| 日本中文字幕不卡| 国产精品久久久久久户外露出| 777午夜精品免费视频| 成人99免费视频| 日本成人超碰在线观看| 亚洲日本中文字幕区| 日韩免费性生活视频播放| 欧美综合一区二区| 成人国产精品免费观看动漫 | 国产成人8x视频一区二区| 天天综合网天天综合色| 亚洲色欲色欲www在线观看| 欧美xfplay| 欧美日本国产视频| 色综合久久中文字幕综合网| 国产在线精品一区在线观看麻豆| 亚洲午夜精品网| 国产精品欧美经典| 26uuu精品一区二区| 在线成人免费视频| 欧美综合天天夜夜久久| 不卡av在线免费观看| 国产电影一区二区三区| 久久精品国产亚洲5555| 亚洲成人福利片| 亚洲精选在线视频| 国产精品成人免费精品自在线观看| 久久久综合网站| 日韩欧美在线1卡| 欧美喷潮久久久xxxxx| 日本福利一区二区| 99精品国产91久久久久久 | 精品国产免费人成在线观看| 精品视频一区二区不卡| 欧美主播一区二区三区美女| 99久久国产综合精品麻豆|