123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127 |
- #ifndef __LWIPOPT_H__
- #define __LWIPOPT_H__
- #ifndef SYS_LIGHTWEIGHT_PROT
- #define SYS_LIGHTWEIGHT_PROT 0
- #endif
- #ifndef NO_SYS
- #define NO_SYS 0
- #endif
- #ifndef NO_SYS_NO_TIMERS
- #define NO_SYS_NO_TIMERS 0
- #endif
- #ifndef MEMCPY
- #define MEMCPY(dst,src,len) memcpy(dst,src,len)
- #endif
- #ifndef SMEMCPY
- #define SMEMCPY(dst,src,len) memcpy(dst,src,len)
- #endif
- #ifndef MEM_LIBC_MALLOC
- #define MEM_LIBC_MALLOC 0
- #endif
- #ifndef MEMP_MEM_MALLOC
- #define MEMP_MEM_MALLOC 0
- #endif
- #ifndef MEM_ALIGNMENT
- #define MEM_ALIGNMENT 4
- #endif
- #ifndef MEM_SIZE
- #define MEM_SIZE 1600
- #endif
- #ifndef MEMP_SEPARATE_POOLS
- #define MEMP_SEPARATE_POOLS 0
- #endif
- #ifndef MEMP_OVERFLOW_CHECK
- #define MEMP_OVERFLOW_CHECK 0
- #endif
- #ifndef MEMP_SANITY_CHECK
- #define MEMP_SANITY_CHECK 0
- #endif
- #ifndef MEM_USE_POOLS
- #define MEM_USE_POOLS 0
- #endif
- #ifndef MEM_USE_POOLS_TRY_BIGGER_POOL
- #define MEM_USE_POOLS_TRY_BIGGER_POOL 0
- #endif
- #ifndef MEMP_USE_CUSTOM_POOLS
- #define MEMP_USE_CUSTOM_POOLS 0
- #endif
- #ifndef LWIP_ALLOW_MEM_FREE_FROM_OTHER_CONTEXT
- #define LWIP_ALLOW_MEM_FREE_FROM_OTHER_CONTEXT 0
- #endif
- #ifndef MEMP_NUM_PBUF
- #define MEMP_NUM_PBUF 16
- #endif
- #ifndef MEMP_NUM_RAW_PCB
- #define MEMP_NUM_RAW_PCB 4
- #endif
- #ifndef MEMP_NUM_UDP_PCB
- #define MEMP_NUM_UDP_PCB 4
- #endif
- #ifndef MEMP_NUM_TCP_PCB
- #define MEMP_NUM_TCP_PCB 5
- #endif
- #ifndef MEMP_NUM_TCP_PCB_LISTEN
- #define MEMP_NUM_TCP_PCB_LISTEN 8
- #endif
- #ifndef MEMP_NUM_TCP_SEG
- #define MEMP_NUM_TCP_SEG 16
- #endif
- #ifndef MEMP_NUM_REASSDATA
- #define MEMP_NUM_REASSDATA 5
- #endif
- #ifndef MEMP_NUM_FRAG_PBUF
- #define MEMP_NUM_FRAG_PBUF 15
- #endif
- #ifndef MEMP_NUM_ARP_QUEUE
- #define MEMP_NUM_ARP_QUEUE 30
- #endif
- #ifndef MEMP_NUM_IGMP_GROUP
- #define MEMP_NUM_IGMP_GROUP 8
- #endif
- #ifndef MEMP_NUM_SYS_TIMEOUT
- #define MEMP_NUM_SYS_TIMEOUT (LWIP_TCP + IP_REASSEMBLY + LWIP_ARP + (2*LWIP_DHCP) + LWIP_AUTOIP + LWIP_IGMP + LWIP_DNS + PPP_SUPPORT)
- #endif
- #ifndef MEMP_NUM_NETBUF
- #define MEMP_NUM_NETBUF 2
- #endif
- #ifndef MEMP_NUM_NETCONN
- #define MEMP_NUM_NETCONN 4
- #endif
- #ifndef MEMP_NUM_TCPIP_MSG_API
- #define MEMP_NUM_TCPIP_MSG_API 8
- #endif
- #ifndef MEMP_NUM_TCPIP_MSG_INPKT
- #define MEMP_NUM_TCPIP_MSG_INPKT 8
- #endif
- #ifndef MEMP_NUM_SNMP_NODE
- #define MEMP_NUM_SNMP_NODE 50
- #endif
- #ifndef MEMP_NUM_SNMP_ROOTNODE
- #define MEMP_NUM_SNMP_ROOTNODE 30
- #endif
- #ifndef MEMP_NUM_SNMP_VARBIND
- #define MEMP_NUM_SNMP_VARBIND 2
- #endif
- #ifndef MEMP_NUM_SNMP_VALUE
- #define MEMP_NUM_SNMP_VALUE 3
- #endif
- #ifndef MEMP_NUM_NETDB
- #define MEMP_NUM_NETDB 1
- #endif
- #ifndef MEMP_NUM_LOCALHOSTLIST
- #define MEMP_NUM_LOCALHOSTLIST 1
- #endif
- #ifndef MEMP_NUM_PPPOE_INTERFACES
- #define MEMP_NUM_PPPOE_INTERFACES 1
- #endif
- #ifndef PBUF_POOL_SIZE
- #define PBUF_POOL_SIZE 16
- #endif
- #ifndef LWIP_ARP
- #define LWIP_ARP 1
- #endif
- #ifndef ARP_TABLE_SIZE
- #define ARP_TABLE_SIZE 10
- #endif
- #ifndef ARP_QUEUEING
- #define ARP_QUEUEING 0
- #endif
- #ifndef ETHARP_TRUST_IP_MAC
- #define ETHARP_TRUST_IP_MAC 0
- #endif
- #ifndef ETHARP_SUPPORT_VLAN
- #define ETHARP_SUPPORT_VLAN 0
- #endif
- #ifndef LWIP_ETHERNET
- #define LWIP_ETHERNET (LWIP_ARP || PPPOE_SUPPORT)
- #endif
- #ifndef ETH_PAD_SIZE
- #define ETH_PAD_SIZE 0
- #endif
- #ifndef ETHARP_SUPPORT_STATIC_ENTRIES
- #define ETHARP_SUPPORT_STATIC_ENTRIES 0
- #endif
- #ifndef IP_FORWARD
- #define IP_FORWARD 0
- #endif
- #ifndef IP_OPTIONS_ALLOWED
- #define IP_OPTIONS_ALLOWED 1
- #endif
- #ifndef IP_REASSEMBLY
- #define IP_REASSEMBLY 1
- #endif
- #ifndef IP_FRAG
- #define IP_FRAG 1
- #endif
- #ifndef IP_REASS_MAXAGE
- #define IP_REASS_MAXAGE 3
- #endif
- #ifndef IP_REASS_MAX_PBUFS
- #define IP_REASS_MAX_PBUFS 10
- #endif
- #ifndef IP_FRAG_USES_STATIC_BUF
- #define IP_FRAG_USES_STATIC_BUF 0
- #endif
- #if IP_FRAG_USES_STATIC_BUF && !defined(IP_FRAG_MAX_MTU)
- #define IP_FRAG_MAX_MTU 1500
- #endif
- #ifndef IP_DEFAULT_TTL
- #define IP_DEFAULT_TTL 255
- #endif
- #ifndef IP_SOF_BROADCAST
- #define IP_SOF_BROADCAST 0
- #endif
- #ifndef IP_SOF_BROADCAST_RECV
- #define IP_SOF_BROADCAST_RECV 0
- #endif
- #ifndef IP_FORWARD_ALLOW_TX_ON_RX_NETIF
- #define IP_FORWARD_ALLOW_TX_ON_RX_NETIF 0
- #endif
- #ifndef LWIP_RANDOMIZE_INITIAL_LOCAL_PORTS
- #define LWIP_RANDOMIZE_INITIAL_LOCAL_PORTS 0
- #endif
- #ifndef LWIP_ICMP
- #define LWIP_ICMP 1
- #endif
- #ifndef ICMP_TTL
- #define ICMP_TTL (IP_DEFAULT_TTL)
- #endif
- #ifndef LWIP_BROADCAST_PING
- #define LWIP_BROADCAST_PING 0
- #endif
- #ifndef LWIP_MULTICAST_PING
- #define LWIP_MULTICAST_PING 0
- #endif
- #ifndef LWIP_RAW
- #define LWIP_RAW 1
- #endif
- #ifndef RAW_TTL
- #define RAW_TTL (IP_DEFAULT_TTL)
- #endif
- #ifndef LWIP_DHCP
- #define LWIP_DHCP 0
- #endif
- #ifndef DHCP_DOES_ARP_CHECK
- #define DHCP_DOES_ARP_CHECK ((LWIP_DHCP) && (LWIP_ARP))
- #endif
- #ifndef LWIP_AUTOIP
- #define LWIP_AUTOIP 0
- #endif
- #ifndef LWIP_DHCP_AUTOIP_COOP
- #define LWIP_DHCP_AUTOIP_COOP 0
- #endif
- #ifndef LWIP_DHCP_AUTOIP_COOP_TRIES
- #define LWIP_DHCP_AUTOIP_COOP_TRIES 9
- #endif
- #ifndef LWIP_SNMP
- #define LWIP_SNMP 0
- #endif
- #ifndef SNMP_CONCURRENT_REQUESTS
- #define SNMP_CONCURRENT_REQUESTS 1
- #endif
- #ifndef SNMP_TRAP_DESTINATIONS
- #define SNMP_TRAP_DESTINATIONS 1
- #endif
- #ifndef SNMP_PRIVATE_MIB
- #define SNMP_PRIVATE_MIB 0
- #endif
- #ifndef SNMP_SAFE_REQUESTS
- #define SNMP_SAFE_REQUESTS 1
- #endif
- #ifndef SNMP_MAX_OCTET_STRING_LEN
- #define SNMP_MAX_OCTET_STRING_LEN 127
- #endif
- #ifndef SNMP_MAX_TREE_DEPTH
- #define SNMP_MAX_TREE_DEPTH 15
- #endif
- #ifndef SNMP_MAX_VALUE_SIZE
- #define SNMP_MAX_VALUE_SIZE LWIP_MAX((SNMP_MAX_OCTET_STRING_LEN)+1, sizeof(s32_t)*(SNMP_MAX_TREE_DEPTH))
- #endif
- #ifndef LWIP_IGMP
- #define LWIP_IGMP 0
- #endif
- #ifndef LWIP_DNS
- #define LWIP_DNS 0
- #endif
- #ifndef DNS_TABLE_SIZE
- #define DNS_TABLE_SIZE 4
- #endif
- #ifndef DNS_MAX_NAME_LENGTH
- #define DNS_MAX_NAME_LENGTH 256
- #endif
- #ifndef DNS_MAX_SERVERS
- #define DNS_MAX_SERVERS 2
- #endif
- #ifndef DNS_DOES_NAME_CHECK
- #define DNS_DOES_NAME_CHECK 1
- #endif
- #ifndef DNS_MSG_SIZE
- #define DNS_MSG_SIZE 512
- #endif
- #ifndef DNS_LOCAL_HOSTLIST
- #define DNS_LOCAL_HOSTLIST 0
- #endif
- #ifndef DNS_LOCAL_HOSTLIST_IS_DYNAMIC
- #define DNS_LOCAL_HOSTLIST_IS_DYNAMIC 0
- #endif
- #ifndef LWIP_UDP
- #define LWIP_UDP 1
- #endif
- #ifndef LWIP_UDPLITE
- #define LWIP_UDPLITE 0
- #endif
- #ifndef UDP_TTL
- #define UDP_TTL (IP_DEFAULT_TTL)
- #endif
- #ifndef LWIP_NETBUF_RECVINFO
- #define LWIP_NETBUF_RECVINFO 0
- #endif
- #ifndef LWIP_TCP
- #define LWIP_TCP 1
- #endif
- #ifndef TCP_TTL
- #define TCP_TTL (IP_DEFAULT_TTL)
- #endif
- #ifndef TCP_WND
- #define TCP_WND (4 * TCP_MSS)
- #endif
- #ifndef TCP_MAXRTX
- #define TCP_MAXRTX 12
- #endif
- #ifndef TCP_SYNMAXRTX
- #define TCP_SYNMAXRTX 6
- #endif
- #ifndef TCP_QUEUE_OOSEQ
- #define TCP_QUEUE_OOSEQ (LWIP_TCP)
- #endif
- #ifndef TCP_MSS
- #define TCP_MSS 1480
- #endif
- #ifndef TCP_CALCULATE_EFF_SEND_MSS
- #define TCP_CALCULATE_EFF_SEND_MSS 1
- #endif
- #ifndef TCP_SND_BUF
- #define TCP_SND_BUF (2 * TCP_MSS)
- #endif
- #ifndef TCP_SND_QUEUELEN
- #define TCP_SND_QUEUELEN ((4 * (TCP_SND_BUF) + (TCP_MSS - 1))/(TCP_MSS))
- #endif
- #ifndef TCP_SNDLOWAT
- #define TCP_SNDLOWAT LWIP_MIN(LWIP_MAX(((TCP_SND_BUF)/2), (2 * TCP_MSS) + 1), (TCP_SND_BUF) - 1)
- #endif
- #ifndef TCP_SNDQUEUELOWAT
- #define TCP_SNDQUEUELOWAT LWIP_MAX(((TCP_SND_QUEUELEN)/2), 5)
- #endif
- #ifndef TCP_OOSEQ_MAX_BYTES
- #define TCP_OOSEQ_MAX_BYTES 0
- #endif
- #ifndef TCP_OOSEQ_MAX_PBUFS
- #define TCP_OOSEQ_MAX_PBUFS 0
- #endif
- #ifndef TCP_LISTEN_BACKLOG
- #define TCP_LISTEN_BACKLOG 0
- #endif
- #ifndef TCP_DEFAULT_LISTEN_BACKLOG
- #define TCP_DEFAULT_LISTEN_BACKLOG 0xff
- #endif
- #ifndef TCP_OVERSIZE
- #define TCP_OVERSIZE TCP_MSS
- #endif
- #ifndef LWIP_TCP_TIMESTAMPS
- #define LWIP_TCP_TIMESTAMPS 0
- #endif
- #ifndef TCP_WND_UPDATE_THRESHOLD
- #define TCP_WND_UPDATE_THRESHOLD (TCP_WND / 4)
- #endif
- #if !defined(LWIP_EVENT_API) && !defined(LWIP_CALLBACK_API)
- #define LWIP_EVENT_API 0
- #define LWIP_CALLBACK_API 1
- #endif
- #ifndef PBUF_LINK_HLEN
- #define PBUF_LINK_HLEN (14 + ETH_PAD_SIZE)
- #endif
- #ifndef PBUF_POOL_BUFSIZE
- #define PBUF_POOL_BUFSIZE LWIP_MEM_ALIGN_SIZE(TCP_MSS+40+PBUF_LINK_HLEN)
- #endif
- #ifndef LWIP_NETIF_HOSTNAME
- #define LWIP_NETIF_HOSTNAME 0
- #endif
- #ifndef LWIP_NETIF_API
- #define LWIP_NETIF_API 0
- #endif
- #ifndef LWIP_NETIF_STATUS_CALLBACK
- #define LWIP_NETIF_STATUS_CALLBACK 0
- #endif
- #ifndef LWIP_NETIF_LINK_CALLBACK
- #define LWIP_NETIF_LINK_CALLBACK 0
- #endif
- #ifndef LWIP_NETIF_REMOVE_CALLBACK
- #define LWIP_NETIF_REMOVE_CALLBACK 0
- #endif
- #ifndef LWIP_NETIF_HWADDRHINT
- #define LWIP_NETIF_HWADDRHINT 0
- #endif
- #ifndef LWIP_NETIF_LOOPBACK
- #define LWIP_NETIF_LOOPBACK 0
- #endif
- #ifndef LWIP_LOOPBACK_MAX_PBUFS
- #define LWIP_LOOPBACK_MAX_PBUFS 0
- #endif
- #ifndef LWIP_NETIF_LOOPBACK_MULTITHREADING
- #define LWIP_NETIF_LOOPBACK_MULTITHREADING (!NO_SYS)
- #endif
- #ifndef LWIP_NETIF_TX_SINGLE_PBUF
- #define LWIP_NETIF_TX_SINGLE_PBUF 0
- #endif
- #ifndef LWIP_HAVE_LOOPIF
- #define LWIP_HAVE_LOOPIF 0
- #endif
- #ifndef LWIP_HAVE_SLIPIF
- #define LWIP_HAVE_SLIPIF 0
- #endif
- #ifndef TCPIP_THREAD_NAME
- #define TCPIP_THREAD_NAME "tcpip_thread"
- #endif
- #ifndef TCPIP_THREAD_STACKSIZE
- #define TCPIP_THREAD_STACKSIZE 1024
- #endif
- #ifndef TCPIP_THREAD_PRIO
- #define TCPIP_THREAD_PRIO (LOWPRIO + 1)
- #endif
- #ifndef TCPIP_MBOX_SIZE
- #define TCPIP_MBOX_SIZE MEMP_NUM_PBUF
- #endif
- #ifndef SLIPIF_THREAD_NAME
- #define SLIPIF_THREAD_NAME "slipif_loop"
- #endif
- #ifndef SLIPIF_THREAD_STACKSIZE
- #define SLIPIF_THREAD_STACKSIZE 1024
- #endif
- #ifndef SLIPIF_THREAD_PRIO
- #define SLIPIF_THREAD_PRIO (LOWPRIO + 1)
- #endif
- #ifndef PPP_THREAD_NAME
- #define PPP_THREAD_NAME "pppInputThread"
- #endif
- #ifndef PPP_THREAD_STACKSIZE
- #define PPP_THREAD_STACKSIZE 1024
- #endif
- #ifndef PPP_THREAD_PRIO
- #define PPP_THREAD_PRIO (LOWPRIO + 1)
- #endif
- #ifndef DEFAULT_THREAD_NAME
- #define DEFAULT_THREAD_NAME "lwIP"
- #endif
- #ifndef DEFAULT_THREAD_STACKSIZE
- #define DEFAULT_THREAD_STACKSIZE 1024
- #endif
- #ifndef DEFAULT_THREAD_PRIO
- #define DEFAULT_THREAD_PRIO (LOWPRIO + 1)
- #endif
- #ifndef DEFAULT_RAW_RECVMBOX_SIZE
- #define DEFAULT_RAW_RECVMBOX_SIZE 4
- #endif
- #ifndef DEFAULT_UDP_RECVMBOX_SIZE
- #define DEFAULT_UDP_RECVMBOX_SIZE 4
- #endif
- #ifndef DEFAULT_TCP_RECVMBOX_SIZE
- #define DEFAULT_TCP_RECVMBOX_SIZE 40
- #endif
- #ifndef DEFAULT_ACCEPTMBOX_SIZE
- #define DEFAULT_ACCEPTMBOX_SIZE 4
- #endif
- #ifndef LWIP_TCPIP_CORE_LOCKING
- #define LWIP_TCPIP_CORE_LOCKING 0
- #endif
- #ifndef LWIP_TCPIP_CORE_LOCKING_INPUT
- #define LWIP_TCPIP_CORE_LOCKING_INPUT 0
- #endif
- #ifndef LWIP_NETCONN
- #define LWIP_NETCONN 1
- #endif
- #ifndef LWIP_TCPIP_TIMEOUT
- #define LWIP_TCPIP_TIMEOUT 1
- #endif
- #ifndef LWIP_SOCKET
- #define LWIP_SOCKET 1
- #endif
- #ifndef LWIP_COMPAT_SOCKETS
- #define LWIP_COMPAT_SOCKETS 1
- #endif
- #ifndef LWIP_POSIX_SOCKETS_IO_NAMES
- #define LWIP_POSIX_SOCKETS_IO_NAMES 1
- #endif
- #ifndef LWIP_TCP_KEEPALIVE
- #define LWIP_TCP_KEEPALIVE 0
- #endif
- #ifndef LWIP_SO_SNDTIMEO
- #define LWIP_SO_SNDTIMEO 0
- #endif
- #ifndef LWIP_SO_RCVTIMEO
- #define LWIP_SO_RCVTIMEO 0
- #endif
- #ifndef LWIP_SO_RCVBUF
- #define LWIP_SO_RCVBUF 0
- #endif
- #ifndef RECV_BUFSIZE_DEFAULT
- #define RECV_BUFSIZE_DEFAULT INT_MAX
- #endif
- #ifndef SO_REUSE
- #define SO_REUSE 0
- #endif
- #ifndef SO_REUSE_RXTOALL
- #define SO_REUSE_RXTOALL 0
- #endif
- #ifndef LWIP_STATS
- #define LWIP_STATS 1
- #endif
- #if LWIP_STATS
- #ifndef LWIP_STATS_DISPLAY
- #define LWIP_STATS_DISPLAY 0
- #endif
- #ifndef LINK_STATS
- #define LINK_STATS 1
- #endif
- #ifndef ETHARP_STATS
- #define ETHARP_STATS (LWIP_ARP)
- #endif
- #ifndef IP_STATS
- #define IP_STATS 1
- #endif
- #ifndef IPFRAG_STATS
- #define IPFRAG_STATS (IP_REASSEMBLY || IP_FRAG)
- #endif
- #ifndef ICMP_STATS
- #define ICMP_STATS 1
- #endif
- #ifndef IGMP_STATS
- #define IGMP_STATS (LWIP_IGMP)
- #endif
- #ifndef UDP_STATS
- #define UDP_STATS (LWIP_UDP)
- #endif
- #ifndef TCP_STATS
- #define TCP_STATS (LWIP_TCP)
- #endif
- #ifndef MEM_STATS
- #define MEM_STATS ((MEM_LIBC_MALLOC == 0) && (MEM_USE_POOLS == 0))
- #endif
- #ifndef MEMP_STATS
- #define MEMP_STATS (MEMP_MEM_MALLOC == 0)
- #endif
- #ifndef SYS_STATS
- #define SYS_STATS (NO_SYS == 0)
- #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
- #ifndef PPP_SUPPORT
- #define PPP_SUPPORT 0
- #endif
- #ifndef PPPOE_SUPPORT
- #define PPPOE_SUPPORT 0
- #endif
- #ifndef PPPOS_SUPPORT
- #define PPPOS_SUPPORT PPP_SUPPORT
- #endif
- #if PPP_SUPPORT
- #ifndef NUM_PPP
- #define NUM_PPP 1
- #endif
- #ifndef PAP_SUPPORT
- #define PAP_SUPPORT 0
- #endif
- #ifndef CHAP_SUPPORT
- #define CHAP_SUPPORT 0
- #endif
- #ifndef MSCHAP_SUPPORT
- #define MSCHAP_SUPPORT 0
- #endif
- #ifndef CBCP_SUPPORT
- #define CBCP_SUPPORT 0
- #endif
- #ifndef CCP_SUPPORT
- #define CCP_SUPPORT 0
- #endif
- #ifndef VJ_SUPPORT
- #define VJ_SUPPORT 0
- #endif
- #ifndef MD5_SUPPORT
- #define MD5_SUPPORT 0
- #endif
- #ifndef FSM_DEFTIMEOUT
- #define FSM_DEFTIMEOUT 6
- #endif
- #ifndef FSM_DEFMAXTERMREQS
- #define FSM_DEFMAXTERMREQS 2
- #endif
- #ifndef FSM_DEFMAXCONFREQS
- #define FSM_DEFMAXCONFREQS 10
- #endif
- #ifndef FSM_DEFMAXNAKLOOPS
- #define FSM_DEFMAXNAKLOOPS 5
- #endif
- #ifndef UPAP_DEFTIMEOUT
- #define UPAP_DEFTIMEOUT 6
- #endif
- #ifndef UPAP_DEFREQTIME
- #define UPAP_DEFREQTIME 30
- #endif
- #ifndef CHAP_DEFTIMEOUT
- #define CHAP_DEFTIMEOUT 6
- #endif
- #ifndef CHAP_DEFTRANSMITS
- #define CHAP_DEFTRANSMITS 10
- #endif
- #ifndef LCP_ECHOINTERVAL
- #define LCP_ECHOINTERVAL 0
- #endif
- #ifndef LCP_MAXECHOFAILS
- #define LCP_MAXECHOFAILS 3
- #endif
- #ifndef PPP_MAXIDLEFLAG
- #define PPP_MAXIDLEFLAG 100
- #endif
- #define PPP_MTU 1500
- #ifndef PPP_MAXMTU
- #define PPP_MAXMTU 1500
- #endif
- #define PPP_MINMTU 64
- #define PPP_MRU 1500
- #define PPP_MAXMRU 1500
- #ifndef PPP_DEFMRU
- #define PPP_DEFMRU 296
- #endif
- #define PPP_MINMRU 128
- #ifndef MAXNAMELEN
- #define MAXNAMELEN 256
- #endif
- #ifndef MAXSECRETLEN
- #define MAXSECRETLEN 256
- #endif
- #endif
- #ifndef CHECKSUM_GEN_IP
- #define CHECKSUM_GEN_IP 1
- #endif
-
- #ifndef CHECKSUM_GEN_UDP
- #define CHECKSUM_GEN_UDP 1
- #endif
-
- #ifndef CHECKSUM_GEN_TCP
- #define CHECKSUM_GEN_TCP 1
- #endif
- #ifndef CHECKSUM_GEN_ICMP
- #define CHECKSUM_GEN_ICMP 1
- #endif
-
- #ifndef CHECKSUM_CHECK_IP
- #define CHECKSUM_CHECK_IP 1
- #endif
-
- #ifndef CHECKSUM_CHECK_UDP
- #define CHECKSUM_CHECK_UDP 1
- #endif
- #ifndef CHECKSUM_CHECK_TCP
- #define CHECKSUM_CHECK_TCP 1
- #endif
- #ifndef LWIP_CHECKSUM_ON_COPY
- #define LWIP_CHECKSUM_ON_COPY 0
- #endif
- #ifndef LWIP_DBG_MIN_LEVEL
- #define LWIP_DBG_MIN_LEVEL LWIP_DBG_LEVEL_ALL
- #endif
- #ifndef LWIP_DBG_TYPES_ON
- #define LWIP_DBG_TYPES_ON LWIP_DBG_ON
- #endif
- #ifndef ETHARP_DEBUG
- #define ETHARP_DEBUG LWIP_DBG_OFF
- #endif
- #ifndef NETIF_DEBUG
- #define NETIF_DEBUG LWIP_DBG_OFF
- #endif
- #ifndef PBUF_DEBUG
- #define PBUF_DEBUG LWIP_DBG_OFF
- #endif
- #ifndef API_LIB_DEBUG
- #define API_LIB_DEBUG LWIP_DBG_OFF
- #endif
- #ifndef API_MSG_DEBUG
- #define API_MSG_DEBUG LWIP_DBG_OFF
- #endif
- #ifndef SOCKETS_DEBUG
- #define SOCKETS_DEBUG LWIP_DBG_OFF
- #endif
- #ifndef ICMP_DEBUG
- #define ICMP_DEBUG LWIP_DBG_OFF
- #endif
- #ifndef IGMP_DEBUG
- #define IGMP_DEBUG LWIP_DBG_OFF
- #endif
- #ifndef INET_DEBUG
- #define INET_DEBUG LWIP_DBG_OFF
- #endif
- #ifndef IP_DEBUG
- #define IP_DEBUG LWIP_DBG_OFF
- #endif
- #ifndef IP_REASS_DEBUG
- #define IP_REASS_DEBUG LWIP_DBG_OFF
- #endif
- #ifndef RAW_DEBUG
- #define RAW_DEBUG LWIP_DBG_OFF
- #endif
- #ifndef MEM_DEBUG
- #define MEM_DEBUG LWIP_DBG_OFF
- #endif
- #ifndef MEMP_DEBUG
- #define MEMP_DEBUG LWIP_DBG_OFF
- #endif
- #ifndef SYS_DEBUG
- #define SYS_DEBUG LWIP_DBG_OFF
- #endif
- #ifndef TIMERS_DEBUG
- #define TIMERS_DEBUG LWIP_DBG_OFF
- #endif
- #ifndef TCP_DEBUG
- #define TCP_DEBUG LWIP_DBG_OFF
- #endif
- #ifndef TCP_INPUT_DEBUG
- #define TCP_INPUT_DEBUG LWIP_DBG_OFF
- #endif
- #ifndef TCP_FR_DEBUG
- #define TCP_FR_DEBUG LWIP_DBG_OFF
- #endif
- #ifndef TCP_RTO_DEBUG
- #define TCP_RTO_DEBUG LWIP_DBG_OFF
- #endif
- #ifndef TCP_CWND_DEBUG
- #define TCP_CWND_DEBUG LWIP_DBG_OFF
- #endif
- #ifndef TCP_WND_DEBUG
- #define TCP_WND_DEBUG LWIP_DBG_OFF
- #endif
- #ifndef TCP_OUTPUT_DEBUG
- #define TCP_OUTPUT_DEBUG LWIP_DBG_OFF
- #endif
- #ifndef TCP_RST_DEBUG
- #define TCP_RST_DEBUG LWIP_DBG_OFF
- #endif
- #ifndef TCP_QLEN_DEBUG
- #define TCP_QLEN_DEBUG LWIP_DBG_OFF
- #endif
- #ifndef UDP_DEBUG
- #define UDP_DEBUG LWIP_DBG_OFF
- #endif
- #ifndef TCPIP_DEBUG
- #define TCPIP_DEBUG LWIP_DBG_OFF
- #endif
- #ifndef PPP_DEBUG
- #define PPP_DEBUG LWIP_DBG_OFF
- #endif
- #ifndef SLIP_DEBUG
- #define SLIP_DEBUG LWIP_DBG_OFF
- #endif
- #ifndef DHCP_DEBUG
- #define DHCP_DEBUG LWIP_DBG_OFF
- #endif
- #ifndef AUTOIP_DEBUG
- #define AUTOIP_DEBUG LWIP_DBG_OFF
- #endif
- #ifndef SNMP_MSG_DEBUG
- #define SNMP_MSG_DEBUG LWIP_DBG_OFF
- #endif
- #ifndef SNMP_MIB_DEBUG
- #define SNMP_MIB_DEBUG LWIP_DBG_OFF
- #endif
- #ifndef DNS_DEBUG
- #define DNS_DEBUG LWIP_DBG_OFF
- #endif
- #endif
|