lwipopts.h 57 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127
  1. /**
  2. * @file
  3. *
  4. * lwIP Options Configuration
  5. */
  6. /*
  7. * Copyright (c) 2001-2004 Swedish Institute of Computer Science.
  8. * All rights reserved.
  9. *
  10. * Redistribution and use in source and binary forms, with or without modification,
  11. * are permitted provided that the following conditions are met:
  12. *
  13. * 1. Redistributions of source code must retain the above copyright notice,
  14. * this list of conditions and the following disclaimer.
  15. * 2. Redistributions in binary form must reproduce the above copyright notice,
  16. * this list of conditions and the following disclaimer in the documentation
  17. * and/or other materials provided with the distribution.
  18. * 3. The name of the author may not be used to endorse or promote products
  19. * derived from this software without specific prior written permission.
  20. *
  21. * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
  22. * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
  23. * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
  24. * SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
  25. * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
  26. * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  27. * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  28. * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
  29. * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
  30. * OF SUCH DAMAGE.
  31. *
  32. * This file is part of the lwIP TCP/IP stack.
  33. *
  34. * Author: Adam Dunkels <adam@sics.se>
  35. *
  36. */
  37. #ifndef __LWIPOPT_H__
  38. #define __LWIPOPT_H__
  39. /*
  40. -----------------------------------------------
  41. ---------- Platform specific locking ----------
  42. -----------------------------------------------
  43. */
  44. /**
  45. * SYS_LIGHTWEIGHT_PROT==1: if you want inter-task protection for certain
  46. * critical regions during buffer allocation, deallocation and memory
  47. * allocation and deallocation.
  48. */
  49. #ifndef SYS_LIGHTWEIGHT_PROT
  50. #define SYS_LIGHTWEIGHT_PROT 0
  51. #endif
  52. /**
  53. * NO_SYS==1: Provides VERY minimal functionality. Otherwise,
  54. * use lwIP facilities.
  55. */
  56. #ifndef NO_SYS
  57. #define NO_SYS 0
  58. #endif
  59. /**
  60. * NO_SYS_NO_TIMERS==1: Drop support for sys_timeout when NO_SYS==1
  61. * Mainly for compatibility to old versions.
  62. */
  63. #ifndef NO_SYS_NO_TIMERS
  64. #define NO_SYS_NO_TIMERS 0
  65. #endif
  66. /**
  67. * MEMCPY: override this if you have a faster implementation at hand than the
  68. * one included in your C library
  69. */
  70. #ifndef MEMCPY
  71. #define MEMCPY(dst,src,len) memcpy(dst,src,len)
  72. #endif
  73. /**
  74. * SMEMCPY: override this with care! Some compilers (e.g. gcc) can inline a
  75. * call to memcpy() if the length is known at compile time and is small.
  76. */
  77. #ifndef SMEMCPY
  78. #define SMEMCPY(dst,src,len) memcpy(dst,src,len)
  79. #endif
  80. /*
  81. ------------------------------------
  82. ---------- Memory options ----------
  83. ------------------------------------
  84. */
  85. /**
  86. * MEM_LIBC_MALLOC==1: Use malloc/free/realloc provided by your C-library
  87. * instead of the lwip internal allocator. Can save code size if you
  88. * already use it.
  89. */
  90. #ifndef MEM_LIBC_MALLOC
  91. #define MEM_LIBC_MALLOC 0
  92. #endif
  93. /**
  94. * MEMP_MEM_MALLOC==1: Use mem_malloc/mem_free instead of the lwip pool allocator.
  95. * Especially useful with MEM_LIBC_MALLOC but handle with care regarding execution
  96. * speed and usage from interrupts!
  97. */
  98. #ifndef MEMP_MEM_MALLOC
  99. #define MEMP_MEM_MALLOC 0
  100. #endif
  101. /**
  102. * MEM_ALIGNMENT: should be set to the alignment of the CPU
  103. * 4 byte alignment -> #define MEM_ALIGNMENT 4
  104. * 2 byte alignment -> #define MEM_ALIGNMENT 2
  105. */
  106. #ifndef MEM_ALIGNMENT
  107. #define MEM_ALIGNMENT 4
  108. #endif
  109. /**
  110. * MEM_SIZE: the size of the heap memory. If the application will send
  111. * a lot of data that needs to be copied, this should be set high.
  112. */
  113. #ifndef MEM_SIZE
  114. #define MEM_SIZE 1600
  115. #endif
  116. /**
  117. * MEMP_SEPARATE_POOLS: if defined to 1, each pool is placed in its own array.
  118. * This can be used to individually change the location of each pool.
  119. * Default is one big array for all pools
  120. */
  121. #ifndef MEMP_SEPARATE_POOLS
  122. #define MEMP_SEPARATE_POOLS 0
  123. #endif
  124. /**
  125. * MEMP_OVERFLOW_CHECK: memp overflow protection reserves a configurable
  126. * amount of bytes before and after each memp element in every pool and fills
  127. * it with a prominent default value.
  128. * MEMP_OVERFLOW_CHECK == 0 no checking
  129. * MEMP_OVERFLOW_CHECK == 1 checks each element when it is freed
  130. * MEMP_OVERFLOW_CHECK >= 2 checks each element in every pool every time
  131. * memp_malloc() or memp_free() is called (useful but slow!)
  132. */
  133. #ifndef MEMP_OVERFLOW_CHECK
  134. #define MEMP_OVERFLOW_CHECK 0
  135. #endif
  136. /**
  137. * MEMP_SANITY_CHECK==1: run a sanity check after each memp_free() to make
  138. * sure that there are no cycles in the linked lists.
  139. */
  140. #ifndef MEMP_SANITY_CHECK
  141. #define MEMP_SANITY_CHECK 0
  142. #endif
  143. /**
  144. * MEM_USE_POOLS==1: Use an alternative to malloc() by allocating from a set
  145. * of memory pools of various sizes. When mem_malloc is called, an element of
  146. * the smallest pool that can provide the length needed is returned.
  147. * To use this, MEMP_USE_CUSTOM_POOLS also has to be enabled.
  148. */
  149. #ifndef MEM_USE_POOLS
  150. #define MEM_USE_POOLS 0
  151. #endif
  152. /**
  153. * MEM_USE_POOLS_TRY_BIGGER_POOL==1: if one malloc-pool is empty, try the next
  154. * bigger pool - WARNING: THIS MIGHT WASTE MEMORY but it can make a system more
  155. * reliable. */
  156. #ifndef MEM_USE_POOLS_TRY_BIGGER_POOL
  157. #define MEM_USE_POOLS_TRY_BIGGER_POOL 0
  158. #endif
  159. /**
  160. * MEMP_USE_CUSTOM_POOLS==1: whether to include a user file lwippools.h
  161. * that defines additional pools beyond the "standard" ones required
  162. * by lwIP. If you set this to 1, you must have lwippools.h in your
  163. * inlude path somewhere.
  164. */
  165. #ifndef MEMP_USE_CUSTOM_POOLS
  166. #define MEMP_USE_CUSTOM_POOLS 0
  167. #endif
  168. /**
  169. * Set this to 1 if you want to free PBUF_RAM pbufs (or call mem_free()) from
  170. * interrupt context (or another context that doesn't allow waiting for a
  171. * semaphore).
  172. * If set to 1, mem_malloc will be protected by a semaphore and SYS_ARCH_PROTECT,
  173. * while mem_free will only use SYS_ARCH_PROTECT. mem_malloc SYS_ARCH_UNPROTECTs
  174. * with each loop so that mem_free can run.
  175. *
  176. * ATTENTION: As you can see from the above description, this leads to dis-/
  177. * enabling interrupts often, which can be slow! Also, on low memory, mem_malloc
  178. * can need longer.
  179. *
  180. * If you don't want that, at least for NO_SYS=0, you can still use the following
  181. * functions to enqueue a deallocation call which then runs in the tcpip_thread
  182. * context:
  183. * - pbuf_free_callback(p);
  184. * - mem_free_callback(m);
  185. */
  186. #ifndef LWIP_ALLOW_MEM_FREE_FROM_OTHER_CONTEXT
  187. #define LWIP_ALLOW_MEM_FREE_FROM_OTHER_CONTEXT 0
  188. #endif
  189. /*
  190. ------------------------------------------------
  191. ---------- Internal Memory Pool Sizes ----------
  192. ------------------------------------------------
  193. */
  194. /**
  195. * MEMP_NUM_PBUF: the number of memp struct pbufs (used for PBUF_ROM and PBUF_REF).
  196. * If the application sends a lot of data out of ROM (or other static memory),
  197. * this should be set high.
  198. */
  199. #ifndef MEMP_NUM_PBUF
  200. #define MEMP_NUM_PBUF 16
  201. #endif
  202. /**
  203. * MEMP_NUM_RAW_PCB: Number of raw connection PCBs
  204. * (requires the LWIP_RAW option)
  205. */
  206. #ifndef MEMP_NUM_RAW_PCB
  207. #define MEMP_NUM_RAW_PCB 4
  208. #endif
  209. /**
  210. * MEMP_NUM_UDP_PCB: the number of UDP protocol control blocks. One
  211. * per active UDP "connection".
  212. * (requires the LWIP_UDP option)
  213. */
  214. #ifndef MEMP_NUM_UDP_PCB
  215. #define MEMP_NUM_UDP_PCB 4
  216. #endif
  217. /**
  218. * MEMP_NUM_TCP_PCB: the number of simulatenously active TCP connections.
  219. * (requires the LWIP_TCP option)
  220. */
  221. #ifndef MEMP_NUM_TCP_PCB
  222. #define MEMP_NUM_TCP_PCB 5
  223. #endif
  224. /**
  225. * MEMP_NUM_TCP_PCB_LISTEN: the number of listening TCP connections.
  226. * (requires the LWIP_TCP option)
  227. */
  228. #ifndef MEMP_NUM_TCP_PCB_LISTEN
  229. #define MEMP_NUM_TCP_PCB_LISTEN 8
  230. #endif
  231. /**
  232. * MEMP_NUM_TCP_SEG: the number of simultaneously queued TCP segments.
  233. * (requires the LWIP_TCP option)
  234. */
  235. #ifndef MEMP_NUM_TCP_SEG
  236. #define MEMP_NUM_TCP_SEG 16
  237. #endif
  238. /**
  239. * MEMP_NUM_REASSDATA: the number of IP packets simultaneously queued for
  240. * reassembly (whole packets, not fragments!)
  241. */
  242. #ifndef MEMP_NUM_REASSDATA
  243. #define MEMP_NUM_REASSDATA 5
  244. #endif
  245. /**
  246. * MEMP_NUM_FRAG_PBUF: the number of IP fragments simultaneously sent
  247. * (fragments, not whole packets!).
  248. * This is only used with IP_FRAG_USES_STATIC_BUF==0 and
  249. * LWIP_NETIF_TX_SINGLE_PBUF==0 and only has to be > 1 with DMA-enabled MACs
  250. * where the packet is not yet sent when netif->output returns.
  251. */
  252. #ifndef MEMP_NUM_FRAG_PBUF
  253. #define MEMP_NUM_FRAG_PBUF 15
  254. #endif
  255. /**
  256. * MEMP_NUM_ARP_QUEUE: the number of simulateously queued outgoing
  257. * packets (pbufs) that are waiting for an ARP request (to resolve
  258. * their destination address) to finish.
  259. * (requires the ARP_QUEUEING option)
  260. */
  261. #ifndef MEMP_NUM_ARP_QUEUE
  262. #define MEMP_NUM_ARP_QUEUE 30
  263. #endif
  264. /**
  265. * MEMP_NUM_IGMP_GROUP: The number of multicast groups whose network interfaces
  266. * can be members et the same time (one per netif - allsystems group -, plus one
  267. * per netif membership).
  268. * (requires the LWIP_IGMP option)
  269. */
  270. #ifndef MEMP_NUM_IGMP_GROUP
  271. #define MEMP_NUM_IGMP_GROUP 8
  272. #endif
  273. /**
  274. * MEMP_NUM_SYS_TIMEOUT: the number of simulateously active timeouts.
  275. * (requires NO_SYS==0)
  276. * The default number of timeouts is calculated here for all enabled modules.
  277. * The formula expects settings to be either '0' or '1'.
  278. */
  279. #ifndef MEMP_NUM_SYS_TIMEOUT
  280. #define MEMP_NUM_SYS_TIMEOUT (LWIP_TCP + IP_REASSEMBLY + LWIP_ARP + (2*LWIP_DHCP) + LWIP_AUTOIP + LWIP_IGMP + LWIP_DNS + PPP_SUPPORT)
  281. #endif
  282. /**
  283. * MEMP_NUM_NETBUF: the number of struct netbufs.
  284. * (only needed if you use the sequential API, like api_lib.c)
  285. */
  286. #ifndef MEMP_NUM_NETBUF
  287. #define MEMP_NUM_NETBUF 2
  288. #endif
  289. /**
  290. * MEMP_NUM_NETCONN: the number of struct netconns.
  291. * (only needed if you use the sequential API, like api_lib.c)
  292. */
  293. #ifndef MEMP_NUM_NETCONN
  294. #define MEMP_NUM_NETCONN 4
  295. #endif
  296. /**
  297. * MEMP_NUM_TCPIP_MSG_API: the number of struct tcpip_msg, which are used
  298. * for callback/timeout API communication.
  299. * (only needed if you use tcpip.c)
  300. */
  301. #ifndef MEMP_NUM_TCPIP_MSG_API
  302. #define MEMP_NUM_TCPIP_MSG_API 8
  303. #endif
  304. /**
  305. * MEMP_NUM_TCPIP_MSG_INPKT: the number of struct tcpip_msg, which are used
  306. * for incoming packets.
  307. * (only needed if you use tcpip.c)
  308. */
  309. #ifndef MEMP_NUM_TCPIP_MSG_INPKT
  310. #define MEMP_NUM_TCPIP_MSG_INPKT 8
  311. #endif
  312. /**
  313. * MEMP_NUM_SNMP_NODE: the number of leafs in the SNMP tree.
  314. */
  315. #ifndef MEMP_NUM_SNMP_NODE
  316. #define MEMP_NUM_SNMP_NODE 50
  317. #endif
  318. /**
  319. * MEMP_NUM_SNMP_ROOTNODE: the number of branches in the SNMP tree.
  320. * Every branch has one leaf (MEMP_NUM_SNMP_NODE) at least!
  321. */
  322. #ifndef MEMP_NUM_SNMP_ROOTNODE
  323. #define MEMP_NUM_SNMP_ROOTNODE 30
  324. #endif
  325. /**
  326. * MEMP_NUM_SNMP_VARBIND: the number of concurrent requests (does not have to
  327. * be changed normally) - 2 of these are used per request (1 for input,
  328. * 1 for output)
  329. */
  330. #ifndef MEMP_NUM_SNMP_VARBIND
  331. #define MEMP_NUM_SNMP_VARBIND 2
  332. #endif
  333. /**
  334. * MEMP_NUM_SNMP_VALUE: the number of OID or values concurrently used
  335. * (does not have to be changed normally) - 3 of these are used per request
  336. * (1 for the value read and 2 for OIDs - input and output)
  337. */
  338. #ifndef MEMP_NUM_SNMP_VALUE
  339. #define MEMP_NUM_SNMP_VALUE 3
  340. #endif
  341. /**
  342. * MEMP_NUM_NETDB: the number of concurrently running lwip_addrinfo() calls
  343. * (before freeing the corresponding memory using lwip_freeaddrinfo()).
  344. */
  345. #ifndef MEMP_NUM_NETDB
  346. #define MEMP_NUM_NETDB 1
  347. #endif
  348. /**
  349. * MEMP_NUM_LOCALHOSTLIST: the number of host entries in the local host list
  350. * if DNS_LOCAL_HOSTLIST_IS_DYNAMIC==1.
  351. */
  352. #ifndef MEMP_NUM_LOCALHOSTLIST
  353. #define MEMP_NUM_LOCALHOSTLIST 1
  354. #endif
  355. /**
  356. * MEMP_NUM_PPPOE_INTERFACES: the number of concurrently active PPPoE
  357. * interfaces (only used with PPPOE_SUPPORT==1)
  358. */
  359. #ifndef MEMP_NUM_PPPOE_INTERFACES
  360. #define MEMP_NUM_PPPOE_INTERFACES 1
  361. #endif
  362. /**
  363. * PBUF_POOL_SIZE: the number of buffers in the pbuf pool.
  364. */
  365. #ifndef PBUF_POOL_SIZE
  366. #define PBUF_POOL_SIZE 16
  367. #endif
  368. /*
  369. ---------------------------------
  370. ---------- ARP options ----------
  371. ---------------------------------
  372. */
  373. /**
  374. * LWIP_ARP==1: Enable ARP functionality.
  375. */
  376. #ifndef LWIP_ARP
  377. #define LWIP_ARP 1
  378. #endif
  379. /**
  380. * ARP_TABLE_SIZE: Number of active MAC-IP address pairs cached.
  381. */
  382. #ifndef ARP_TABLE_SIZE
  383. #define ARP_TABLE_SIZE 10
  384. #endif
  385. /**
  386. * ARP_QUEUEING==1: Multiple outgoing packets are queued during hardware address
  387. * resolution. By default, only the most recent packet is queued per IP address.
  388. * This is sufficient for most protocols and mainly reduces TCP connection
  389. * startup time. Set this to 1 if you know your application sends more than one
  390. * packet in a row to an IP address that is not in the ARP cache.
  391. */
  392. #ifndef ARP_QUEUEING
  393. #define ARP_QUEUEING 0
  394. #endif
  395. /**
  396. * ETHARP_TRUST_IP_MAC==1: Incoming IP packets cause the ARP table to be
  397. * updated with the source MAC and IP addresses supplied in the packet.
  398. * You may want to disable this if you do not trust LAN peers to have the
  399. * correct addresses, or as a limited approach to attempt to handle
  400. * spoofing. If disabled, lwIP will need to make a new ARP request if
  401. * the peer is not already in the ARP table, adding a little latency.
  402. * The peer *is* in the ARP table if it requested our address before.
  403. * Also notice that this slows down input processing of every IP packet!
  404. */
  405. #ifndef ETHARP_TRUST_IP_MAC
  406. #define ETHARP_TRUST_IP_MAC 0
  407. #endif
  408. /**
  409. * ETHARP_SUPPORT_VLAN==1: support receiving ethernet packets with VLAN header.
  410. * Additionally, you can define ETHARP_VLAN_CHECK to an u16_t VLAN ID to check.
  411. * If ETHARP_VLAN_CHECK is defined, only VLAN-traffic for this VLAN is accepted.
  412. * If ETHARP_VLAN_CHECK is not defined, all traffic is accepted.
  413. * Alternatively, define a function/define ETHARP_VLAN_CHECK_FN(eth_hdr, vlan)
  414. * that returns 1 to accept a packet or 0 to drop a packet.
  415. */
  416. #ifndef ETHARP_SUPPORT_VLAN
  417. #define ETHARP_SUPPORT_VLAN 0
  418. #endif
  419. /** LWIP_ETHERNET==1: enable ethernet support for PPPoE even though ARP
  420. * might be disabled
  421. */
  422. #ifndef LWIP_ETHERNET
  423. #define LWIP_ETHERNET (LWIP_ARP || PPPOE_SUPPORT)
  424. #endif
  425. /** ETH_PAD_SIZE: number of bytes added before the ethernet header to ensure
  426. * alignment of payload after that header. Since the header is 14 bytes long,
  427. * without this padding e.g. addresses in the IP header will not be aligned
  428. * on a 32-bit boundary, so setting this to 2 can speed up 32-bit-platforms.
  429. */
  430. #ifndef ETH_PAD_SIZE
  431. #define ETH_PAD_SIZE 0
  432. #endif
  433. /** ETHARP_SUPPORT_STATIC_ENTRIES==1: enable code to support static ARP table
  434. * entries (using etharp_add_static_entry/etharp_remove_static_entry).
  435. */
  436. #ifndef ETHARP_SUPPORT_STATIC_ENTRIES
  437. #define ETHARP_SUPPORT_STATIC_ENTRIES 0
  438. #endif
  439. /*
  440. --------------------------------
  441. ---------- IP options ----------
  442. --------------------------------
  443. */
  444. /**
  445. * IP_FORWARD==1: Enables the ability to forward IP packets across network
  446. * interfaces. If you are going to run lwIP on a device with only one network
  447. * interface, define this to 0.
  448. */
  449. #ifndef IP_FORWARD
  450. #define IP_FORWARD 0
  451. #endif
  452. /**
  453. * IP_OPTIONS_ALLOWED: Defines the behavior for IP options.
  454. * IP_OPTIONS_ALLOWED==0: All packets with IP options are dropped.
  455. * IP_OPTIONS_ALLOWED==1: IP options are allowed (but not parsed).
  456. */
  457. #ifndef IP_OPTIONS_ALLOWED
  458. #define IP_OPTIONS_ALLOWED 1
  459. #endif
  460. /**
  461. * IP_REASSEMBLY==1: Reassemble incoming fragmented IP packets. Note that
  462. * this option does not affect outgoing packet sizes, which can be controlled
  463. * via IP_FRAG.
  464. */
  465. #ifndef IP_REASSEMBLY
  466. #define IP_REASSEMBLY 1
  467. #endif
  468. /**
  469. * IP_FRAG==1: Fragment outgoing IP packets if their size exceeds MTU. Note
  470. * that this option does not affect incoming packet sizes, which can be
  471. * controlled via IP_REASSEMBLY.
  472. */
  473. #ifndef IP_FRAG
  474. #define IP_FRAG 1
  475. #endif
  476. /**
  477. * IP_REASS_MAXAGE: Maximum time (in multiples of IP_TMR_INTERVAL - so seconds, normally)
  478. * a fragmented IP packet waits for all fragments to arrive. If not all fragments arrived
  479. * in this time, the whole packet is discarded.
  480. */
  481. #ifndef IP_REASS_MAXAGE
  482. #define IP_REASS_MAXAGE 3
  483. #endif
  484. /**
  485. * IP_REASS_MAX_PBUFS: Total maximum amount of pbufs waiting to be reassembled.
  486. * Since the received pbufs are enqueued, be sure to configure
  487. * PBUF_POOL_SIZE > IP_REASS_MAX_PBUFS so that the stack is still able to receive
  488. * packets even if the maximum amount of fragments is enqueued for reassembly!
  489. */
  490. #ifndef IP_REASS_MAX_PBUFS
  491. #define IP_REASS_MAX_PBUFS 10
  492. #endif
  493. /**
  494. * IP_FRAG_USES_STATIC_BUF==1: Use a static MTU-sized buffer for IP
  495. * fragmentation. Otherwise pbufs are allocated and reference the original
  496. * packet data to be fragmented (or with LWIP_NETIF_TX_SINGLE_PBUF==1,
  497. * new PBUF_RAM pbufs are used for fragments).
  498. * ATTENTION: IP_FRAG_USES_STATIC_BUF==1 may not be used for DMA-enabled MACs!
  499. */
  500. #ifndef IP_FRAG_USES_STATIC_BUF
  501. #define IP_FRAG_USES_STATIC_BUF 0
  502. #endif
  503. /**
  504. * IP_FRAG_MAX_MTU: Assumed max MTU on any interface for IP frag buffer
  505. * (requires IP_FRAG_USES_STATIC_BUF==1)
  506. */
  507. #if IP_FRAG_USES_STATIC_BUF && !defined(IP_FRAG_MAX_MTU)
  508. #define IP_FRAG_MAX_MTU 1500
  509. #endif
  510. /**
  511. * IP_DEFAULT_TTL: Default value for Time-To-Live used by transport layers.
  512. */
  513. #ifndef IP_DEFAULT_TTL
  514. #define IP_DEFAULT_TTL 255
  515. #endif
  516. /**
  517. * IP_SOF_BROADCAST=1: Use the SOF_BROADCAST field to enable broadcast
  518. * filter per pcb on udp and raw send operations. To enable broadcast filter
  519. * on recv operations, you also have to set IP_SOF_BROADCAST_RECV=1.
  520. */
  521. #ifndef IP_SOF_BROADCAST
  522. #define IP_SOF_BROADCAST 0
  523. #endif
  524. /**
  525. * IP_SOF_BROADCAST_RECV (requires IP_SOF_BROADCAST=1) enable the broadcast
  526. * filter on recv operations.
  527. */
  528. #ifndef IP_SOF_BROADCAST_RECV
  529. #define IP_SOF_BROADCAST_RECV 0
  530. #endif
  531. /**
  532. * IP_FORWARD_ALLOW_TX_ON_RX_NETIF==1: allow ip_forward() to send packets back
  533. * out on the netif where it was received. This should only be used for
  534. * wireless networks.
  535. * ATTENTION: When this is 1, make sure your netif driver correctly marks incoming
  536. * link-layer-broadcast/multicast packets as such using the corresponding pbuf flags!
  537. */
  538. #ifndef IP_FORWARD_ALLOW_TX_ON_RX_NETIF
  539. #define IP_FORWARD_ALLOW_TX_ON_RX_NETIF 0
  540. #endif
  541. /**
  542. * LWIP_RANDOMIZE_INITIAL_LOCAL_PORTS==1: randomize the local port for the first
  543. * local TCP/UDP pcb (default==0). This can prevent creating predictable port
  544. * numbers after booting a device.
  545. */
  546. #ifndef LWIP_RANDOMIZE_INITIAL_LOCAL_PORTS
  547. #define LWIP_RANDOMIZE_INITIAL_LOCAL_PORTS 0
  548. #endif
  549. /*
  550. ----------------------------------
  551. ---------- ICMP options ----------
  552. ----------------------------------
  553. */
  554. /**
  555. * LWIP_ICMP==1: Enable ICMP module inside the IP stack.
  556. * Be careful, disable that make your product non-compliant to RFC1122
  557. */
  558. #ifndef LWIP_ICMP
  559. #define LWIP_ICMP 1
  560. #endif
  561. /**
  562. * ICMP_TTL: Default value for Time-To-Live used by ICMP packets.
  563. */
  564. #ifndef ICMP_TTL
  565. #define ICMP_TTL (IP_DEFAULT_TTL)
  566. #endif
  567. /**
  568. * LWIP_BROADCAST_PING==1: respond to broadcast pings (default is unicast only)
  569. */
  570. #ifndef LWIP_BROADCAST_PING
  571. #define LWIP_BROADCAST_PING 0
  572. #endif
  573. /**
  574. * LWIP_MULTICAST_PING==1: respond to multicast pings (default is unicast only)
  575. */
  576. #ifndef LWIP_MULTICAST_PING
  577. #define LWIP_MULTICAST_PING 0
  578. #endif
  579. /*
  580. ---------------------------------
  581. ---------- RAW options ----------
  582. ---------------------------------
  583. */
  584. /**
  585. * LWIP_RAW==1: Enable application layer to hook into the IP layer itself.
  586. */
  587. #ifndef LWIP_RAW
  588. #define LWIP_RAW 1
  589. #endif
  590. /**
  591. * LWIP_RAW==1: Enable application layer to hook into the IP layer itself.
  592. */
  593. #ifndef RAW_TTL
  594. #define RAW_TTL (IP_DEFAULT_TTL)
  595. #endif
  596. /*
  597. ----------------------------------
  598. ---------- DHCP options ----------
  599. ----------------------------------
  600. */
  601. /**
  602. * LWIP_DHCP==1: Enable DHCP module.
  603. */
  604. #ifndef LWIP_DHCP
  605. #define LWIP_DHCP 0
  606. #endif
  607. /**
  608. * DHCP_DOES_ARP_CHECK==1: Do an ARP check on the offered address.
  609. */
  610. #ifndef DHCP_DOES_ARP_CHECK
  611. #define DHCP_DOES_ARP_CHECK ((LWIP_DHCP) && (LWIP_ARP))
  612. #endif
  613. /*
  614. ------------------------------------
  615. ---------- AUTOIP options ----------
  616. ------------------------------------
  617. */
  618. /**
  619. * LWIP_AUTOIP==1: Enable AUTOIP module.
  620. */
  621. #ifndef LWIP_AUTOIP
  622. #define LWIP_AUTOIP 0
  623. #endif
  624. /**
  625. * LWIP_DHCP_AUTOIP_COOP==1: Allow DHCP and AUTOIP to be both enabled on
  626. * the same interface at the same time.
  627. */
  628. #ifndef LWIP_DHCP_AUTOIP_COOP
  629. #define LWIP_DHCP_AUTOIP_COOP 0
  630. #endif
  631. /**
  632. * LWIP_DHCP_AUTOIP_COOP_TRIES: Set to the number of DHCP DISCOVER probes
  633. * that should be sent before falling back on AUTOIP. This can be set
  634. * as low as 1 to get an AutoIP address very quickly, but you should
  635. * be prepared to handle a changing IP address when DHCP overrides
  636. * AutoIP.
  637. */
  638. #ifndef LWIP_DHCP_AUTOIP_COOP_TRIES
  639. #define LWIP_DHCP_AUTOIP_COOP_TRIES 9
  640. #endif
  641. /*
  642. ----------------------------------
  643. ---------- SNMP options ----------
  644. ----------------------------------
  645. */
  646. /**
  647. * LWIP_SNMP==1: Turn on SNMP module. UDP must be available for SNMP
  648. * transport.
  649. */
  650. #ifndef LWIP_SNMP
  651. #define LWIP_SNMP 0
  652. #endif
  653. /**
  654. * SNMP_CONCURRENT_REQUESTS: Number of concurrent requests the module will
  655. * allow. At least one request buffer is required.
  656. * Does not have to be changed unless external MIBs answer request asynchronously
  657. */
  658. #ifndef SNMP_CONCURRENT_REQUESTS
  659. #define SNMP_CONCURRENT_REQUESTS 1
  660. #endif
  661. /**
  662. * SNMP_TRAP_DESTINATIONS: Number of trap destinations. At least one trap
  663. * destination is required
  664. */
  665. #ifndef SNMP_TRAP_DESTINATIONS
  666. #define SNMP_TRAP_DESTINATIONS 1
  667. #endif
  668. /**
  669. * SNMP_PRIVATE_MIB:
  670. * When using a private MIB, you have to create a file 'private_mib.h' that contains
  671. * a 'struct mib_array_node mib_private' which contains your MIB.
  672. */
  673. #ifndef SNMP_PRIVATE_MIB
  674. #define SNMP_PRIVATE_MIB 0
  675. #endif
  676. /**
  677. * Only allow SNMP write actions that are 'safe' (e.g. disabeling netifs is not
  678. * a safe action and disabled when SNMP_SAFE_REQUESTS = 1).
  679. * Unsafe requests are disabled by default!
  680. */
  681. #ifndef SNMP_SAFE_REQUESTS
  682. #define SNMP_SAFE_REQUESTS 1
  683. #endif
  684. /**
  685. * The maximum length of strings used. This affects the size of
  686. * MEMP_SNMP_VALUE elements.
  687. */
  688. #ifndef SNMP_MAX_OCTET_STRING_LEN
  689. #define SNMP_MAX_OCTET_STRING_LEN 127
  690. #endif
  691. /**
  692. * The maximum depth of the SNMP tree.
  693. * With private MIBs enabled, this depends on your MIB!
  694. * This affects the size of MEMP_SNMP_VALUE elements.
  695. */
  696. #ifndef SNMP_MAX_TREE_DEPTH
  697. #define SNMP_MAX_TREE_DEPTH 15
  698. #endif
  699. /**
  700. * The size of the MEMP_SNMP_VALUE elements, normally calculated from
  701. * SNMP_MAX_OCTET_STRING_LEN and SNMP_MAX_TREE_DEPTH.
  702. */
  703. #ifndef SNMP_MAX_VALUE_SIZE
  704. #define SNMP_MAX_VALUE_SIZE LWIP_MAX((SNMP_MAX_OCTET_STRING_LEN)+1, sizeof(s32_t)*(SNMP_MAX_TREE_DEPTH))
  705. #endif
  706. /*
  707. ----------------------------------
  708. ---------- IGMP options ----------
  709. ----------------------------------
  710. */
  711. /**
  712. * LWIP_IGMP==1: Turn on IGMP module.
  713. */
  714. #ifndef LWIP_IGMP
  715. #define LWIP_IGMP 0
  716. #endif
  717. /*
  718. ----------------------------------
  719. ---------- DNS options -----------
  720. ----------------------------------
  721. */
  722. /**
  723. * LWIP_DNS==1: Turn on DNS module. UDP must be available for DNS
  724. * transport.
  725. */
  726. #ifndef LWIP_DNS
  727. #define LWIP_DNS 0
  728. #endif
  729. /** DNS maximum number of entries to maintain locally. */
  730. #ifndef DNS_TABLE_SIZE
  731. #define DNS_TABLE_SIZE 4
  732. #endif
  733. /** DNS maximum host name length supported in the name table. */
  734. #ifndef DNS_MAX_NAME_LENGTH
  735. #define DNS_MAX_NAME_LENGTH 256
  736. #endif
  737. /** The maximum of DNS servers */
  738. #ifndef DNS_MAX_SERVERS
  739. #define DNS_MAX_SERVERS 2
  740. #endif
  741. /** DNS do a name checking between the query and the response. */
  742. #ifndef DNS_DOES_NAME_CHECK
  743. #define DNS_DOES_NAME_CHECK 1
  744. #endif
  745. /** DNS message max. size. Default value is RFC compliant. */
  746. #ifndef DNS_MSG_SIZE
  747. #define DNS_MSG_SIZE 512
  748. #endif
  749. /** DNS_LOCAL_HOSTLIST: Implements a local host-to-address list. If enabled,
  750. * you have to define
  751. * #define DNS_LOCAL_HOSTLIST_INIT {{"host1", 0x123}, {"host2", 0x234}}
  752. * (an array of structs name/address, where address is an u32_t in network
  753. * byte order).
  754. *
  755. * Instead, you can also use an external function:
  756. * #define DNS_LOOKUP_LOCAL_EXTERN(x) extern u32_t my_lookup_function(const char *name)
  757. * that returns the IP address or INADDR_NONE if not found.
  758. */
  759. #ifndef DNS_LOCAL_HOSTLIST
  760. #define DNS_LOCAL_HOSTLIST 0
  761. #endif /* DNS_LOCAL_HOSTLIST */
  762. /** If this is turned on, the local host-list can be dynamically changed
  763. * at runtime. */
  764. #ifndef DNS_LOCAL_HOSTLIST_IS_DYNAMIC
  765. #define DNS_LOCAL_HOSTLIST_IS_DYNAMIC 0
  766. #endif /* DNS_LOCAL_HOSTLIST_IS_DYNAMIC */
  767. /*
  768. ---------------------------------
  769. ---------- UDP options ----------
  770. ---------------------------------
  771. */
  772. /**
  773. * LWIP_UDP==1: Turn on UDP.
  774. */
  775. #ifndef LWIP_UDP
  776. #define LWIP_UDP 1
  777. #endif
  778. /**
  779. * LWIP_UDPLITE==1: Turn on UDP-Lite. (Requires LWIP_UDP)
  780. */
  781. #ifndef LWIP_UDPLITE
  782. #define LWIP_UDPLITE 0
  783. #endif
  784. /**
  785. * UDP_TTL: Default Time-To-Live value.
  786. */
  787. #ifndef UDP_TTL
  788. #define UDP_TTL (IP_DEFAULT_TTL)
  789. #endif
  790. /**
  791. * LWIP_NETBUF_RECVINFO==1: append destination addr and port to every netbuf.
  792. */
  793. #ifndef LWIP_NETBUF_RECVINFO
  794. #define LWIP_NETBUF_RECVINFO 0
  795. #endif
  796. /*
  797. ---------------------------------
  798. ---------- TCP options ----------
  799. ---------------------------------
  800. */
  801. /**
  802. * LWIP_TCP==1: Turn on TCP.
  803. */
  804. #ifndef LWIP_TCP
  805. #define LWIP_TCP 1
  806. #endif
  807. /**
  808. * TCP_TTL: Default Time-To-Live value.
  809. */
  810. #ifndef TCP_TTL
  811. #define TCP_TTL (IP_DEFAULT_TTL)
  812. #endif
  813. /**
  814. * TCP_WND: The size of a TCP window. This must be at least
  815. * (2 * TCP_MSS) for things to work well
  816. */
  817. #ifndef TCP_WND
  818. #define TCP_WND (4 * TCP_MSS)
  819. #endif
  820. /**
  821. * TCP_MAXRTX: Maximum number of retransmissions of data segments.
  822. */
  823. #ifndef TCP_MAXRTX
  824. #define TCP_MAXRTX 12
  825. #endif
  826. /**
  827. * TCP_SYNMAXRTX: Maximum number of retransmissions of SYN segments.
  828. */
  829. #ifndef TCP_SYNMAXRTX
  830. #define TCP_SYNMAXRTX 6
  831. #endif
  832. /**
  833. * TCP_QUEUE_OOSEQ==1: TCP will queue segments that arrive out of order.
  834. * Define to 0 if your device is low on memory.
  835. */
  836. #ifndef TCP_QUEUE_OOSEQ
  837. #define TCP_QUEUE_OOSEQ (LWIP_TCP)
  838. #endif
  839. /**
  840. * TCP_MSS: TCP Maximum segment size. (default is 536, a conservative default,
  841. * you might want to increase this.)
  842. * For the receive side, this MSS is advertised to the remote side
  843. * when opening a connection. For the transmit size, this MSS sets
  844. * an upper limit on the MSS advertised by the remote host.
  845. */
  846. #ifndef TCP_MSS
  847. #define TCP_MSS 1480
  848. #endif
  849. /**
  850. * TCP_CALCULATE_EFF_SEND_MSS: "The maximum size of a segment that TCP really
  851. * sends, the 'effective send MSS,' MUST be the smaller of the send MSS (which
  852. * reflects the available reassembly buffer size at the remote host) and the
  853. * largest size permitted by the IP layer" (RFC 1122)
  854. * Setting this to 1 enables code that checks TCP_MSS against the MTU of the
  855. * netif used for a connection and limits the MSS if it would be too big otherwise.
  856. */
  857. #ifndef TCP_CALCULATE_EFF_SEND_MSS
  858. #define TCP_CALCULATE_EFF_SEND_MSS 1
  859. #endif
  860. /**
  861. * TCP_SND_BUF: TCP sender buffer space (bytes).
  862. * To achieve good performance, this should be at least 2 * TCP_MSS.
  863. */
  864. #ifndef TCP_SND_BUF
  865. #define TCP_SND_BUF (2 * TCP_MSS)
  866. #endif
  867. /**
  868. * TCP_SND_QUEUELEN: TCP sender buffer space (pbufs). This must be at least
  869. * as much as (2 * TCP_SND_BUF/TCP_MSS) for things to work.
  870. */
  871. #ifndef TCP_SND_QUEUELEN
  872. #define TCP_SND_QUEUELEN ((4 * (TCP_SND_BUF) + (TCP_MSS - 1))/(TCP_MSS))
  873. #endif
  874. /**
  875. * TCP_SNDLOWAT: TCP writable space (bytes). This must be less than
  876. * TCP_SND_BUF. It is the amount of space which must be available in the
  877. * TCP snd_buf for select to return writable (combined with TCP_SNDQUEUELOWAT).
  878. */
  879. #ifndef TCP_SNDLOWAT
  880. #define TCP_SNDLOWAT LWIP_MIN(LWIP_MAX(((TCP_SND_BUF)/2), (2 * TCP_MSS) + 1), (TCP_SND_BUF) - 1)
  881. #endif
  882. /**
  883. * TCP_SNDQUEUELOWAT: TCP writable bufs (pbuf count). This must be less
  884. * than TCP_SND_QUEUELEN. If the number of pbufs queued on a pcb drops below
  885. * this number, select returns writable (combined with TCP_SNDLOWAT).
  886. */
  887. #ifndef TCP_SNDQUEUELOWAT
  888. #define TCP_SNDQUEUELOWAT LWIP_MAX(((TCP_SND_QUEUELEN)/2), 5)
  889. #endif
  890. /**
  891. * TCP_OOSEQ_MAX_BYTES: The maximum number of bytes queued on ooseq per pcb.
  892. * Default is 0 (no limit). Only valid for TCP_QUEUE_OOSEQ==0.
  893. */
  894. #ifndef TCP_OOSEQ_MAX_BYTES
  895. #define TCP_OOSEQ_MAX_BYTES 0
  896. #endif
  897. /**
  898. * TCP_OOSEQ_MAX_PBUFS: The maximum number of pbufs queued on ooseq per pcb.
  899. * Default is 0 (no limit). Only valid for TCP_QUEUE_OOSEQ==0.
  900. */
  901. #ifndef TCP_OOSEQ_MAX_PBUFS
  902. #define TCP_OOSEQ_MAX_PBUFS 0
  903. #endif
  904. /**
  905. * TCP_LISTEN_BACKLOG: Enable the backlog option for tcp listen pcb.
  906. */
  907. #ifndef TCP_LISTEN_BACKLOG
  908. #define TCP_LISTEN_BACKLOG 0
  909. #endif
  910. /**
  911. * The maximum allowed backlog for TCP listen netconns.
  912. * This backlog is used unless another is explicitly specified.
  913. * 0xff is the maximum (u8_t).
  914. */
  915. #ifndef TCP_DEFAULT_LISTEN_BACKLOG
  916. #define TCP_DEFAULT_LISTEN_BACKLOG 0xff
  917. #endif
  918. /**
  919. * TCP_OVERSIZE: The maximum number of bytes that tcp_write may
  920. * allocate ahead of time in an attempt to create shorter pbuf chains
  921. * for transmission. The meaningful range is 0 to TCP_MSS. Some
  922. * suggested values are:
  923. *
  924. * 0: Disable oversized allocation. Each tcp_write() allocates a new
  925. pbuf (old behaviour).
  926. * 1: Allocate size-aligned pbufs with minimal excess. Use this if your
  927. * scatter-gather DMA requires aligned fragments.
  928. * 128: Limit the pbuf/memory overhead to 20%.
  929. * TCP_MSS: Try to create unfragmented TCP packets.
  930. * TCP_MSS/4: Try to create 4 fragments or less per TCP packet.
  931. */
  932. #ifndef TCP_OVERSIZE
  933. #define TCP_OVERSIZE TCP_MSS
  934. #endif
  935. /**
  936. * LWIP_TCP_TIMESTAMPS==1: support the TCP timestamp option.
  937. */
  938. #ifndef LWIP_TCP_TIMESTAMPS
  939. #define LWIP_TCP_TIMESTAMPS 0
  940. #endif
  941. /**
  942. * TCP_WND_UPDATE_THRESHOLD: difference in window to trigger an
  943. * explicit window update
  944. */
  945. #ifndef TCP_WND_UPDATE_THRESHOLD
  946. #define TCP_WND_UPDATE_THRESHOLD (TCP_WND / 4)
  947. #endif
  948. /**
  949. * LWIP_EVENT_API and LWIP_CALLBACK_API: Only one of these should be set to 1.
  950. * LWIP_EVENT_API==1: The user defines lwip_tcp_event() to receive all
  951. * events (accept, sent, etc) that happen in the system.
  952. * LWIP_CALLBACK_API==1: The PCB callback function is called directly
  953. * for the event. This is the default.
  954. */
  955. #if !defined(LWIP_EVENT_API) && !defined(LWIP_CALLBACK_API)
  956. #define LWIP_EVENT_API 0
  957. #define LWIP_CALLBACK_API 1
  958. #endif
  959. /*
  960. ----------------------------------
  961. ---------- Pbuf options ----------
  962. ----------------------------------
  963. */
  964. /**
  965. * PBUF_LINK_HLEN: the number of bytes that should be allocated for a
  966. * link level header. The default is 14, the standard value for
  967. * Ethernet.
  968. */
  969. #ifndef PBUF_LINK_HLEN
  970. #define PBUF_LINK_HLEN (14 + ETH_PAD_SIZE)
  971. #endif
  972. /**
  973. * PBUF_POOL_BUFSIZE: the size of each pbuf in the pbuf pool. The default is
  974. * designed to accomodate single full size TCP frame in one pbuf, including
  975. * TCP_MSS, IP header, and link header.
  976. */
  977. #ifndef PBUF_POOL_BUFSIZE
  978. #define PBUF_POOL_BUFSIZE LWIP_MEM_ALIGN_SIZE(TCP_MSS+40+PBUF_LINK_HLEN)
  979. #endif
  980. /*
  981. ------------------------------------------------
  982. ---------- Network Interfaces options ----------
  983. ------------------------------------------------
  984. */
  985. /**
  986. * LWIP_NETIF_HOSTNAME==1: use DHCP_OPTION_HOSTNAME with netif's hostname
  987. * field.
  988. */
  989. #ifndef LWIP_NETIF_HOSTNAME
  990. #define LWIP_NETIF_HOSTNAME 0
  991. #endif
  992. /**
  993. * LWIP_NETIF_API==1: Support netif api (in netifapi.c)
  994. */
  995. #ifndef LWIP_NETIF_API
  996. #define LWIP_NETIF_API 0
  997. #endif
  998. /**
  999. * LWIP_NETIF_STATUS_CALLBACK==1: Support a callback function whenever an interface
  1000. * changes its up/down status (i.e., due to DHCP IP acquistion)
  1001. */
  1002. #ifndef LWIP_NETIF_STATUS_CALLBACK
  1003. #define LWIP_NETIF_STATUS_CALLBACK 0
  1004. #endif
  1005. /**
  1006. * LWIP_NETIF_LINK_CALLBACK==1: Support a callback function from an interface
  1007. * whenever the link changes (i.e., link down)
  1008. */
  1009. #ifndef LWIP_NETIF_LINK_CALLBACK
  1010. #define LWIP_NETIF_LINK_CALLBACK 0
  1011. #endif
  1012. /**
  1013. * LWIP_NETIF_REMOVE_CALLBACK==1: Support a callback function that is called
  1014. * when a netif has been removed
  1015. */
  1016. #ifndef LWIP_NETIF_REMOVE_CALLBACK
  1017. #define LWIP_NETIF_REMOVE_CALLBACK 0
  1018. #endif
  1019. /**
  1020. * LWIP_NETIF_HWADDRHINT==1: Cache link-layer-address hints (e.g. table
  1021. * indices) in struct netif. TCP and UDP can make use of this to prevent
  1022. * scanning the ARP table for every sent packet. While this is faster for big
  1023. * ARP tables or many concurrent connections, it might be counterproductive
  1024. * if you have a tiny ARP table or if there never are concurrent connections.
  1025. */
  1026. #ifndef LWIP_NETIF_HWADDRHINT
  1027. #define LWIP_NETIF_HWADDRHINT 0
  1028. #endif
  1029. /**
  1030. * LWIP_NETIF_LOOPBACK==1: Support sending packets with a destination IP
  1031. * address equal to the netif IP address, looping them back up the stack.
  1032. */
  1033. #ifndef LWIP_NETIF_LOOPBACK
  1034. #define LWIP_NETIF_LOOPBACK 0
  1035. #endif
  1036. /**
  1037. * LWIP_LOOPBACK_MAX_PBUFS: Maximum number of pbufs on queue for loopback
  1038. * sending for each netif (0 = disabled)
  1039. */
  1040. #ifndef LWIP_LOOPBACK_MAX_PBUFS
  1041. #define LWIP_LOOPBACK_MAX_PBUFS 0
  1042. #endif
  1043. /**
  1044. * LWIP_NETIF_LOOPBACK_MULTITHREADING: Indicates whether threading is enabled in
  1045. * the system, as netifs must change how they behave depending on this setting
  1046. * for the LWIP_NETIF_LOOPBACK option to work.
  1047. * Setting this is needed to avoid reentering non-reentrant functions like
  1048. * tcp_input().
  1049. * LWIP_NETIF_LOOPBACK_MULTITHREADING==1: Indicates that the user is using a
  1050. * multithreaded environment like tcpip.c. In this case, netif->input()
  1051. * is called directly.
  1052. * LWIP_NETIF_LOOPBACK_MULTITHREADING==0: Indicates a polling (or NO_SYS) setup.
  1053. * The packets are put on a list and netif_poll() must be called in
  1054. * the main application loop.
  1055. */
  1056. #ifndef LWIP_NETIF_LOOPBACK_MULTITHREADING
  1057. #define LWIP_NETIF_LOOPBACK_MULTITHREADING (!NO_SYS)
  1058. #endif
  1059. /**
  1060. * LWIP_NETIF_TX_SINGLE_PBUF: if this is set to 1, lwIP tries to put all data
  1061. * to be sent into one single pbuf. This is for compatibility with DMA-enabled
  1062. * MACs that do not support scatter-gather.
  1063. * Beware that this might involve CPU-memcpy before transmitting that would not
  1064. * be needed without this flag! Use this only if you need to!
  1065. *
  1066. * @todo: TCP and IP-frag do not work with this, yet:
  1067. */
  1068. #ifndef LWIP_NETIF_TX_SINGLE_PBUF
  1069. #define LWIP_NETIF_TX_SINGLE_PBUF 0
  1070. #endif /* LWIP_NETIF_TX_SINGLE_PBUF */
  1071. /*
  1072. ------------------------------------
  1073. ---------- LOOPIF options ----------
  1074. ------------------------------------
  1075. */
  1076. /**
  1077. * LWIP_HAVE_LOOPIF==1: Support loop interface (127.0.0.1) and loopif.c
  1078. */
  1079. #ifndef LWIP_HAVE_LOOPIF
  1080. #define LWIP_HAVE_LOOPIF 0
  1081. #endif
  1082. /*
  1083. ------------------------------------
  1084. ---------- SLIPIF options ----------
  1085. ------------------------------------
  1086. */
  1087. /**
  1088. * LWIP_HAVE_SLIPIF==1: Support slip interface and slipif.c
  1089. */
  1090. #ifndef LWIP_HAVE_SLIPIF
  1091. #define LWIP_HAVE_SLIPIF 0
  1092. #endif
  1093. /*
  1094. ------------------------------------
  1095. ---------- Thread options ----------
  1096. ------------------------------------
  1097. */
  1098. /**
  1099. * TCPIP_THREAD_NAME: The name assigned to the main tcpip thread.
  1100. */
  1101. #ifndef TCPIP_THREAD_NAME
  1102. #define TCPIP_THREAD_NAME "tcpip_thread"
  1103. #endif
  1104. /**
  1105. * TCPIP_THREAD_STACKSIZE: The stack size used by the main tcpip thread.
  1106. * The stack size value itself is platform-dependent, but is passed to
  1107. * sys_thread_new() when the thread is created.
  1108. */
  1109. #ifndef TCPIP_THREAD_STACKSIZE
  1110. #define TCPIP_THREAD_STACKSIZE 1024
  1111. #endif
  1112. /**
  1113. * TCPIP_THREAD_PRIO: The priority assigned to the main tcpip thread.
  1114. * The priority value itself is platform-dependent, but is passed to
  1115. * sys_thread_new() when the thread is created.
  1116. */
  1117. #ifndef TCPIP_THREAD_PRIO
  1118. #define TCPIP_THREAD_PRIO (LOWPRIO + 1)
  1119. #endif
  1120. /**
  1121. * TCPIP_MBOX_SIZE: The mailbox size for the tcpip thread messages
  1122. * The queue size value itself is platform-dependent, but is passed to
  1123. * sys_mbox_new() when tcpip_init is called.
  1124. */
  1125. #ifndef TCPIP_MBOX_SIZE
  1126. #define TCPIP_MBOX_SIZE MEMP_NUM_PBUF
  1127. #endif
  1128. /**
  1129. * SLIPIF_THREAD_NAME: The name assigned to the slipif_loop thread.
  1130. */
  1131. #ifndef SLIPIF_THREAD_NAME
  1132. #define SLIPIF_THREAD_NAME "slipif_loop"
  1133. #endif
  1134. /**
  1135. * SLIP_THREAD_STACKSIZE: The stack size used by the slipif_loop thread.
  1136. * The stack size value itself is platform-dependent, but is passed to
  1137. * sys_thread_new() when the thread is created.
  1138. */
  1139. #ifndef SLIPIF_THREAD_STACKSIZE
  1140. #define SLIPIF_THREAD_STACKSIZE 1024
  1141. #endif
  1142. /**
  1143. * SLIPIF_THREAD_PRIO: The priority assigned to the slipif_loop thread.
  1144. * The priority value itself is platform-dependent, but is passed to
  1145. * sys_thread_new() when the thread is created.
  1146. */
  1147. #ifndef SLIPIF_THREAD_PRIO
  1148. #define SLIPIF_THREAD_PRIO (LOWPRIO + 1)
  1149. #endif
  1150. /**
  1151. * PPP_THREAD_NAME: The name assigned to the pppInputThread.
  1152. */
  1153. #ifndef PPP_THREAD_NAME
  1154. #define PPP_THREAD_NAME "pppInputThread"
  1155. #endif
  1156. /**
  1157. * PPP_THREAD_STACKSIZE: The stack size used by the pppInputThread.
  1158. * The stack size value itself is platform-dependent, but is passed to
  1159. * sys_thread_new() when the thread is created.
  1160. */
  1161. #ifndef PPP_THREAD_STACKSIZE
  1162. #define PPP_THREAD_STACKSIZE 1024
  1163. #endif
  1164. /**
  1165. * PPP_THREAD_PRIO: The priority assigned to the pppInputThread.
  1166. * The priority value itself is platform-dependent, but is passed to
  1167. * sys_thread_new() when the thread is created.
  1168. */
  1169. #ifndef PPP_THREAD_PRIO
  1170. #define PPP_THREAD_PRIO (LOWPRIO + 1)
  1171. #endif
  1172. /**
  1173. * DEFAULT_THREAD_NAME: The name assigned to any other lwIP thread.
  1174. */
  1175. #ifndef DEFAULT_THREAD_NAME
  1176. #define DEFAULT_THREAD_NAME "lwIP"
  1177. #endif
  1178. /**
  1179. * DEFAULT_THREAD_STACKSIZE: The stack size used by any other lwIP thread.
  1180. * The stack size value itself is platform-dependent, but is passed to
  1181. * sys_thread_new() when the thread is created.
  1182. */
  1183. #ifndef DEFAULT_THREAD_STACKSIZE
  1184. #define DEFAULT_THREAD_STACKSIZE 1024
  1185. #endif
  1186. /**
  1187. * DEFAULT_THREAD_PRIO: The priority assigned to any other lwIP thread.
  1188. * The priority value itself is platform-dependent, but is passed to
  1189. * sys_thread_new() when the thread is created.
  1190. */
  1191. #ifndef DEFAULT_THREAD_PRIO
  1192. #define DEFAULT_THREAD_PRIO (LOWPRIO + 1)
  1193. #endif
  1194. /**
  1195. * DEFAULT_RAW_RECVMBOX_SIZE: The mailbox size for the incoming packets on a
  1196. * NETCONN_RAW. The queue size value itself is platform-dependent, but is passed
  1197. * to sys_mbox_new() when the recvmbox is created.
  1198. */
  1199. #ifndef DEFAULT_RAW_RECVMBOX_SIZE
  1200. #define DEFAULT_RAW_RECVMBOX_SIZE 4
  1201. #endif
  1202. /**
  1203. * DEFAULT_UDP_RECVMBOX_SIZE: The mailbox size for the incoming packets on a
  1204. * NETCONN_UDP. The queue size value itself is platform-dependent, but is passed
  1205. * to sys_mbox_new() when the recvmbox is created.
  1206. */
  1207. #ifndef DEFAULT_UDP_RECVMBOX_SIZE
  1208. #define DEFAULT_UDP_RECVMBOX_SIZE 4
  1209. #endif
  1210. /**
  1211. * DEFAULT_TCP_RECVMBOX_SIZE: The mailbox size for the incoming packets on a
  1212. * NETCONN_TCP. The queue size value itself is platform-dependent, but is passed
  1213. * to sys_mbox_new() when the recvmbox is created.
  1214. */
  1215. #ifndef DEFAULT_TCP_RECVMBOX_SIZE
  1216. #define DEFAULT_TCP_RECVMBOX_SIZE 40
  1217. #endif
  1218. /**
  1219. * DEFAULT_ACCEPTMBOX_SIZE: The mailbox size for the incoming connections.
  1220. * The queue size value itself is platform-dependent, but is passed to
  1221. * sys_mbox_new() when the acceptmbox is created.
  1222. */
  1223. #ifndef DEFAULT_ACCEPTMBOX_SIZE
  1224. #define DEFAULT_ACCEPTMBOX_SIZE 4
  1225. #endif
  1226. /*
  1227. ----------------------------------------------
  1228. ---------- Sequential layer options ----------
  1229. ----------------------------------------------
  1230. */
  1231. /**
  1232. * LWIP_TCPIP_CORE_LOCKING: (EXPERIMENTAL!)
  1233. * Don't use it if you're not an active lwIP project member
  1234. */
  1235. #ifndef LWIP_TCPIP_CORE_LOCKING
  1236. #define LWIP_TCPIP_CORE_LOCKING 0
  1237. #endif
  1238. /**
  1239. * LWIP_TCPIP_CORE_LOCKING_INPUT: (EXPERIMENTAL!)
  1240. * Don't use it if you're not an active lwIP project member
  1241. */
  1242. #ifndef LWIP_TCPIP_CORE_LOCKING_INPUT
  1243. #define LWIP_TCPIP_CORE_LOCKING_INPUT 0
  1244. #endif
  1245. /**
  1246. * LWIP_NETCONN==1: Enable Netconn API (require to use api_lib.c)
  1247. */
  1248. #ifndef LWIP_NETCONN
  1249. #define LWIP_NETCONN 1
  1250. #endif
  1251. /** LWIP_TCPIP_TIMEOUT==1: Enable tcpip_timeout/tcpip_untimeout tod create
  1252. * timers running in tcpip_thread from another thread.
  1253. */
  1254. #ifndef LWIP_TCPIP_TIMEOUT
  1255. #define LWIP_TCPIP_TIMEOUT 1
  1256. #endif
  1257. /*
  1258. ------------------------------------
  1259. ---------- Socket options ----------
  1260. ------------------------------------
  1261. */
  1262. /**
  1263. * LWIP_SOCKET==1: Enable Socket API (require to use sockets.c)
  1264. */
  1265. #ifndef LWIP_SOCKET
  1266. #define LWIP_SOCKET 1
  1267. #endif
  1268. /**
  1269. * LWIP_COMPAT_SOCKETS==1: Enable BSD-style sockets functions names.
  1270. * (only used if you use sockets.c)
  1271. */
  1272. #ifndef LWIP_COMPAT_SOCKETS
  1273. #define LWIP_COMPAT_SOCKETS 1
  1274. #endif
  1275. /**
  1276. * LWIP_POSIX_SOCKETS_IO_NAMES==1: Enable POSIX-style sockets functions names.
  1277. * Disable this option if you use a POSIX operating system that uses the same
  1278. * names (read, write & close). (only used if you use sockets.c)
  1279. */
  1280. #ifndef LWIP_POSIX_SOCKETS_IO_NAMES
  1281. #define LWIP_POSIX_SOCKETS_IO_NAMES 1
  1282. #endif
  1283. /**
  1284. * LWIP_TCP_KEEPALIVE==1: Enable TCP_KEEPIDLE, TCP_KEEPINTVL and TCP_KEEPCNT
  1285. * options processing. Note that TCP_KEEPIDLE and TCP_KEEPINTVL have to be set
  1286. * in seconds. (does not require sockets.c, and will affect tcp.c)
  1287. */
  1288. #ifndef LWIP_TCP_KEEPALIVE
  1289. #define LWIP_TCP_KEEPALIVE 0
  1290. #endif
  1291. /**
  1292. * LWIP_SO_SNDTIMEO==1: Enable send timeout for sockets/netconns and
  1293. * SO_SNDTIMEO processing.
  1294. */
  1295. #ifndef LWIP_SO_SNDTIMEO
  1296. #define LWIP_SO_SNDTIMEO 0
  1297. #endif
  1298. /**
  1299. * LWIP_SO_RCVTIMEO==1: Enable receive timeout for sockets/netconns and
  1300. * SO_RCVTIMEO processing.
  1301. */
  1302. #ifndef LWIP_SO_RCVTIMEO
  1303. #define LWIP_SO_RCVTIMEO 0
  1304. #endif
  1305. /**
  1306. * LWIP_SO_RCVBUF==1: Enable SO_RCVBUF processing.
  1307. */
  1308. #ifndef LWIP_SO_RCVBUF
  1309. #define LWIP_SO_RCVBUF 0
  1310. #endif
  1311. /**
  1312. * If LWIP_SO_RCVBUF is used, this is the default value for recv_bufsize.
  1313. */
  1314. #ifndef RECV_BUFSIZE_DEFAULT
  1315. #define RECV_BUFSIZE_DEFAULT INT_MAX
  1316. #endif
  1317. /**
  1318. * SO_REUSE==1: Enable SO_REUSEADDR option.
  1319. */
  1320. #ifndef SO_REUSE
  1321. #define SO_REUSE 0
  1322. #endif
  1323. /**
  1324. * SO_REUSE_RXTOALL==1: Pass a copy of incoming broadcast/multicast packets
  1325. * to all local matches if SO_REUSEADDR is turned on.
  1326. * WARNING: Adds a memcpy for every packet if passing to more than one pcb!
  1327. */
  1328. #ifndef SO_REUSE_RXTOALL
  1329. #define SO_REUSE_RXTOALL 0
  1330. #endif
  1331. /*
  1332. ----------------------------------------
  1333. ---------- Statistics options ----------
  1334. ----------------------------------------
  1335. */
  1336. /**
  1337. * LWIP_STATS==1: Enable statistics collection in lwip_stats.
  1338. */
  1339. #ifndef LWIP_STATS
  1340. #define LWIP_STATS 1
  1341. #endif
  1342. #if LWIP_STATS
  1343. /**
  1344. * LWIP_STATS_DISPLAY==1: Compile in the statistics output functions.
  1345. */
  1346. #ifndef LWIP_STATS_DISPLAY
  1347. #define LWIP_STATS_DISPLAY 0
  1348. #endif
  1349. /**
  1350. * LINK_STATS==1: Enable link stats.
  1351. */
  1352. #ifndef LINK_STATS
  1353. #define LINK_STATS 1
  1354. #endif
  1355. /**
  1356. * ETHARP_STATS==1: Enable etharp stats.
  1357. */
  1358. #ifndef ETHARP_STATS
  1359. #define ETHARP_STATS (LWIP_ARP)
  1360. #endif
  1361. /**
  1362. * IP_STATS==1: Enable IP stats.
  1363. */
  1364. #ifndef IP_STATS
  1365. #define IP_STATS 1
  1366. #endif
  1367. /**
  1368. * IPFRAG_STATS==1: Enable IP fragmentation stats. Default is
  1369. * on if using either frag or reass.
  1370. */
  1371. #ifndef IPFRAG_STATS
  1372. #define IPFRAG_STATS (IP_REASSEMBLY || IP_FRAG)
  1373. #endif
  1374. /**
  1375. * ICMP_STATS==1: Enable ICMP stats.
  1376. */
  1377. #ifndef ICMP_STATS
  1378. #define ICMP_STATS 1
  1379. #endif
  1380. /**
  1381. * IGMP_STATS==1: Enable IGMP stats.
  1382. */
  1383. #ifndef IGMP_STATS
  1384. #define IGMP_STATS (LWIP_IGMP)
  1385. #endif
  1386. /**
  1387. * UDP_STATS==1: Enable UDP stats. Default is on if
  1388. * UDP enabled, otherwise off.
  1389. */
  1390. #ifndef UDP_STATS
  1391. #define UDP_STATS (LWIP_UDP)
  1392. #endif
  1393. /**
  1394. * TCP_STATS==1: Enable TCP stats. Default is on if TCP
  1395. * enabled, otherwise off.
  1396. */
  1397. #ifndef TCP_STATS
  1398. #define TCP_STATS (LWIP_TCP)
  1399. #endif
  1400. /**
  1401. * MEM_STATS==1: Enable mem.c stats.
  1402. */
  1403. #ifndef MEM_STATS
  1404. #define MEM_STATS ((MEM_LIBC_MALLOC == 0) && (MEM_USE_POOLS == 0))
  1405. #endif
  1406. /**
  1407. * MEMP_STATS==1: Enable memp.c pool stats.
  1408. */
  1409. #ifndef MEMP_STATS
  1410. #define MEMP_STATS (MEMP_MEM_MALLOC == 0)
  1411. #endif
  1412. /**
  1413. * SYS_STATS==1: Enable system stats (sem and mbox counts, etc).
  1414. */
  1415. #ifndef SYS_STATS
  1416. #define SYS_STATS (NO_SYS == 0)
  1417. #endif
  1418. #else
  1419. #define LINK_STATS 0
  1420. #define IP_STATS 0
  1421. #define IPFRAG_STATS 0
  1422. #define ICMP_STATS 0
  1423. #define IGMP_STATS 0
  1424. #define UDP_STATS 0
  1425. #define TCP_STATS 0
  1426. #define MEM_STATS 0
  1427. #define MEMP_STATS 0
  1428. #define SYS_STATS 0
  1429. #define LWIP_STATS_DISPLAY 0
  1430. #endif /* LWIP_STATS */
  1431. /*
  1432. ---------------------------------
  1433. ---------- PPP options ----------
  1434. ---------------------------------
  1435. */
  1436. /**
  1437. * PPP_SUPPORT==1: Enable PPP.
  1438. */
  1439. #ifndef PPP_SUPPORT
  1440. #define PPP_SUPPORT 0
  1441. #endif
  1442. /**
  1443. * PPPOE_SUPPORT==1: Enable PPP Over Ethernet
  1444. */
  1445. #ifndef PPPOE_SUPPORT
  1446. #define PPPOE_SUPPORT 0
  1447. #endif
  1448. /**
  1449. * PPPOS_SUPPORT==1: Enable PPP Over Serial
  1450. */
  1451. #ifndef PPPOS_SUPPORT
  1452. #define PPPOS_SUPPORT PPP_SUPPORT
  1453. #endif
  1454. #if PPP_SUPPORT
  1455. /**
  1456. * NUM_PPP: Max PPP sessions.
  1457. */
  1458. #ifndef NUM_PPP
  1459. #define NUM_PPP 1
  1460. #endif
  1461. /**
  1462. * PAP_SUPPORT==1: Support PAP.
  1463. */
  1464. #ifndef PAP_SUPPORT
  1465. #define PAP_SUPPORT 0
  1466. #endif
  1467. /**
  1468. * CHAP_SUPPORT==1: Support CHAP.
  1469. */
  1470. #ifndef CHAP_SUPPORT
  1471. #define CHAP_SUPPORT 0
  1472. #endif
  1473. /**
  1474. * MSCHAP_SUPPORT==1: Support MSCHAP. CURRENTLY NOT SUPPORTED! DO NOT SET!
  1475. */
  1476. #ifndef MSCHAP_SUPPORT
  1477. #define MSCHAP_SUPPORT 0
  1478. #endif
  1479. /**
  1480. * CBCP_SUPPORT==1: Support CBCP. CURRENTLY NOT SUPPORTED! DO NOT SET!
  1481. */
  1482. #ifndef CBCP_SUPPORT
  1483. #define CBCP_SUPPORT 0
  1484. #endif
  1485. /**
  1486. * CCP_SUPPORT==1: Support CCP. CURRENTLY NOT SUPPORTED! DO NOT SET!
  1487. */
  1488. #ifndef CCP_SUPPORT
  1489. #define CCP_SUPPORT 0
  1490. #endif
  1491. /**
  1492. * VJ_SUPPORT==1: Support VJ header compression.
  1493. */
  1494. #ifndef VJ_SUPPORT
  1495. #define VJ_SUPPORT 0
  1496. #endif
  1497. /**
  1498. * MD5_SUPPORT==1: Support MD5 (see also CHAP).
  1499. */
  1500. #ifndef MD5_SUPPORT
  1501. #define MD5_SUPPORT 0
  1502. #endif
  1503. /*
  1504. * Timeouts
  1505. */
  1506. #ifndef FSM_DEFTIMEOUT
  1507. #define FSM_DEFTIMEOUT 6 /* Timeout time in seconds */
  1508. #endif
  1509. #ifndef FSM_DEFMAXTERMREQS
  1510. #define FSM_DEFMAXTERMREQS 2 /* Maximum Terminate-Request transmissions */
  1511. #endif
  1512. #ifndef FSM_DEFMAXCONFREQS
  1513. #define FSM_DEFMAXCONFREQS 10 /* Maximum Configure-Request transmissions */
  1514. #endif
  1515. #ifndef FSM_DEFMAXNAKLOOPS
  1516. #define FSM_DEFMAXNAKLOOPS 5 /* Maximum number of nak loops */
  1517. #endif
  1518. #ifndef UPAP_DEFTIMEOUT
  1519. #define UPAP_DEFTIMEOUT 6 /* Timeout (seconds) for retransmitting req */
  1520. #endif
  1521. #ifndef UPAP_DEFREQTIME
  1522. #define UPAP_DEFREQTIME 30 /* Time to wait for auth-req from peer */
  1523. #endif
  1524. #ifndef CHAP_DEFTIMEOUT
  1525. #define CHAP_DEFTIMEOUT 6 /* Timeout time in seconds */
  1526. #endif
  1527. #ifndef CHAP_DEFTRANSMITS
  1528. #define CHAP_DEFTRANSMITS 10 /* max # times to send challenge */
  1529. #endif
  1530. /* Interval in seconds between keepalive echo requests, 0 to disable. */
  1531. #ifndef LCP_ECHOINTERVAL
  1532. #define LCP_ECHOINTERVAL 0
  1533. #endif
  1534. /* Number of unanswered echo requests before failure. */
  1535. #ifndef LCP_MAXECHOFAILS
  1536. #define LCP_MAXECHOFAILS 3
  1537. #endif
  1538. /* Max Xmit idle time (in jiffies) before resend flag char. */
  1539. #ifndef PPP_MAXIDLEFLAG
  1540. #define PPP_MAXIDLEFLAG 100
  1541. #endif
  1542. /*
  1543. * Packet sizes
  1544. *
  1545. * Note - lcp shouldn't be allowed to negotiate stuff outside these
  1546. * limits. See lcp.h in the pppd directory.
  1547. * (XXX - these constants should simply be shared by lcp.c instead
  1548. * of living in lcp.h)
  1549. */
  1550. #define PPP_MTU 1500 /* Default MTU (size of Info field) */
  1551. #ifndef PPP_MAXMTU
  1552. /* #define PPP_MAXMTU 65535 - (PPP_HDRLEN + PPP_FCSLEN) */
  1553. #define PPP_MAXMTU 1500 /* Largest MTU we allow */
  1554. #endif
  1555. #define PPP_MINMTU 64
  1556. #define PPP_MRU 1500 /* default MRU = max length of info field */
  1557. #define PPP_MAXMRU 1500 /* Largest MRU we allow */
  1558. #ifndef PPP_DEFMRU
  1559. #define PPP_DEFMRU 296 /* Try for this */
  1560. #endif
  1561. #define PPP_MINMRU 128 /* No MRUs below this */
  1562. #ifndef MAXNAMELEN
  1563. #define MAXNAMELEN 256 /* max length of hostname or name for auth */
  1564. #endif
  1565. #ifndef MAXSECRETLEN
  1566. #define MAXSECRETLEN 256 /* max length of password or secret */
  1567. #endif
  1568. #endif /* PPP_SUPPORT */
  1569. /*
  1570. --------------------------------------
  1571. ---------- Checksum options ----------
  1572. --------------------------------------
  1573. */
  1574. /**
  1575. * CHECKSUM_GEN_IP==1: Generate checksums in software for outgoing IP packets.
  1576. */
  1577. #ifndef CHECKSUM_GEN_IP
  1578. #define CHECKSUM_GEN_IP 1
  1579. #endif
  1580. /**
  1581. * CHECKSUM_GEN_UDP==1: Generate checksums in software for outgoing UDP packets.
  1582. */
  1583. #ifndef CHECKSUM_GEN_UDP
  1584. #define CHECKSUM_GEN_UDP 1
  1585. #endif
  1586. /**
  1587. * CHECKSUM_GEN_TCP==1: Generate checksums in software for outgoing TCP packets.
  1588. */
  1589. #ifndef CHECKSUM_GEN_TCP
  1590. #define CHECKSUM_GEN_TCP 1
  1591. #endif
  1592. /**
  1593. * CHECKSUM_GEN_ICMP==1: Generate checksums in software for outgoing ICMP packets.
  1594. */
  1595. #ifndef CHECKSUM_GEN_ICMP
  1596. #define CHECKSUM_GEN_ICMP 1
  1597. #endif
  1598. /**
  1599. * CHECKSUM_CHECK_IP==1: Check checksums in software for incoming IP packets.
  1600. */
  1601. #ifndef CHECKSUM_CHECK_IP
  1602. #define CHECKSUM_CHECK_IP 1
  1603. #endif
  1604. /**
  1605. * CHECKSUM_CHECK_UDP==1: Check checksums in software for incoming UDP packets.
  1606. */
  1607. #ifndef CHECKSUM_CHECK_UDP
  1608. #define CHECKSUM_CHECK_UDP 1
  1609. #endif
  1610. /**
  1611. * CHECKSUM_CHECK_TCP==1: Check checksums in software for incoming TCP packets.
  1612. */
  1613. #ifndef CHECKSUM_CHECK_TCP
  1614. #define CHECKSUM_CHECK_TCP 1
  1615. #endif
  1616. /**
  1617. * LWIP_CHECKSUM_ON_COPY==1: Calculate checksum when copying data from
  1618. * application buffers to pbufs.
  1619. */
  1620. #ifndef LWIP_CHECKSUM_ON_COPY
  1621. #define LWIP_CHECKSUM_ON_COPY 0
  1622. #endif
  1623. /*
  1624. ---------------------------------------
  1625. ---------- Hook options ---------------
  1626. ---------------------------------------
  1627. */
  1628. /* Hooks are undefined by default, define them to a function if you need them. */
  1629. /**
  1630. * LWIP_HOOK_IP4_INPUT(pbuf, input_netif):
  1631. * - called from ip_input() (IPv4)
  1632. * - pbuf: received struct pbuf passed to ip_input()
  1633. * - input_netif: struct netif on which the packet has been received
  1634. * Return values:
  1635. * - 0: Hook has not consumed the packet, packet is processed as normal
  1636. * - != 0: Hook has consumed the packet.
  1637. * If the hook consumed the packet, 'pbuf' is in the responsibility of the hook
  1638. * (i.e. free it when done).
  1639. */
  1640. /**
  1641. * LWIP_HOOK_IP4_ROUTE(dest):
  1642. * - called from ip_route() (IPv4)
  1643. * - dest: destination IPv4 address
  1644. * Returns the destination netif or NULL if no destination netif is found. In
  1645. * that case, ip_route() continues as normal.
  1646. */
  1647. /*
  1648. ---------------------------------------
  1649. ---------- Debugging options ----------
  1650. ---------------------------------------
  1651. */
  1652. /**
  1653. * LWIP_DBG_MIN_LEVEL: After masking, the value of the debug is
  1654. * compared against this value. If it is smaller, then debugging
  1655. * messages are written.
  1656. */
  1657. #ifndef LWIP_DBG_MIN_LEVEL
  1658. #define LWIP_DBG_MIN_LEVEL LWIP_DBG_LEVEL_ALL
  1659. #endif
  1660. /**
  1661. * LWIP_DBG_TYPES_ON: A mask that can be used to globally enable/disable
  1662. * debug messages of certain types.
  1663. */
  1664. #ifndef LWIP_DBG_TYPES_ON
  1665. #define LWIP_DBG_TYPES_ON LWIP_DBG_ON
  1666. #endif
  1667. /**
  1668. * ETHARP_DEBUG: Enable debugging in etharp.c.
  1669. */
  1670. #ifndef ETHARP_DEBUG
  1671. #define ETHARP_DEBUG LWIP_DBG_OFF
  1672. #endif
  1673. /**
  1674. * NETIF_DEBUG: Enable debugging in netif.c.
  1675. */
  1676. #ifndef NETIF_DEBUG
  1677. #define NETIF_DEBUG LWIP_DBG_OFF
  1678. #endif
  1679. /**
  1680. * PBUF_DEBUG: Enable debugging in pbuf.c.
  1681. */
  1682. #ifndef PBUF_DEBUG
  1683. #define PBUF_DEBUG LWIP_DBG_OFF
  1684. #endif
  1685. /**
  1686. * API_LIB_DEBUG: Enable debugging in api_lib.c.
  1687. */
  1688. #ifndef API_LIB_DEBUG
  1689. #define API_LIB_DEBUG LWIP_DBG_OFF
  1690. #endif
  1691. /**
  1692. * API_MSG_DEBUG: Enable debugging in api_msg.c.
  1693. */
  1694. #ifndef API_MSG_DEBUG
  1695. #define API_MSG_DEBUG LWIP_DBG_OFF
  1696. #endif
  1697. /**
  1698. * SOCKETS_DEBUG: Enable debugging in sockets.c.
  1699. */
  1700. #ifndef SOCKETS_DEBUG
  1701. #define SOCKETS_DEBUG LWIP_DBG_OFF
  1702. #endif
  1703. /**
  1704. * ICMP_DEBUG: Enable debugging in icmp.c.
  1705. */
  1706. #ifndef ICMP_DEBUG
  1707. #define ICMP_DEBUG LWIP_DBG_OFF
  1708. #endif
  1709. /**
  1710. * IGMP_DEBUG: Enable debugging in igmp.c.
  1711. */
  1712. #ifndef IGMP_DEBUG
  1713. #define IGMP_DEBUG LWIP_DBG_OFF
  1714. #endif
  1715. /**
  1716. * INET_DEBUG: Enable debugging in inet.c.
  1717. */
  1718. #ifndef INET_DEBUG
  1719. #define INET_DEBUG LWIP_DBG_OFF
  1720. #endif
  1721. /**
  1722. * IP_DEBUG: Enable debugging for IP.
  1723. */
  1724. #ifndef IP_DEBUG
  1725. #define IP_DEBUG LWIP_DBG_OFF
  1726. #endif
  1727. /**
  1728. * IP_REASS_DEBUG: Enable debugging in ip_frag.c for both frag & reass.
  1729. */
  1730. #ifndef IP_REASS_DEBUG
  1731. #define IP_REASS_DEBUG LWIP_DBG_OFF
  1732. #endif
  1733. /**
  1734. * RAW_DEBUG: Enable debugging in raw.c.
  1735. */
  1736. #ifndef RAW_DEBUG
  1737. #define RAW_DEBUG LWIP_DBG_OFF
  1738. #endif
  1739. /**
  1740. * MEM_DEBUG: Enable debugging in mem.c.
  1741. */
  1742. #ifndef MEM_DEBUG
  1743. #define MEM_DEBUG LWIP_DBG_OFF
  1744. #endif
  1745. /**
  1746. * MEMP_DEBUG: Enable debugging in memp.c.
  1747. */
  1748. #ifndef MEMP_DEBUG
  1749. #define MEMP_DEBUG LWIP_DBG_OFF
  1750. #endif
  1751. /**
  1752. * SYS_DEBUG: Enable debugging in sys.c.
  1753. */
  1754. #ifndef SYS_DEBUG
  1755. #define SYS_DEBUG LWIP_DBG_OFF
  1756. #endif
  1757. /**
  1758. * TIMERS_DEBUG: Enable debugging in timers.c.
  1759. */
  1760. #ifndef TIMERS_DEBUG
  1761. #define TIMERS_DEBUG LWIP_DBG_OFF
  1762. #endif
  1763. /**
  1764. * TCP_DEBUG: Enable debugging for TCP.
  1765. */
  1766. #ifndef TCP_DEBUG
  1767. #define TCP_DEBUG LWIP_DBG_OFF
  1768. #endif
  1769. /**
  1770. * TCP_INPUT_DEBUG: Enable debugging in tcp_in.c for incoming debug.
  1771. */
  1772. #ifndef TCP_INPUT_DEBUG
  1773. #define TCP_INPUT_DEBUG LWIP_DBG_OFF
  1774. #endif
  1775. /**
  1776. * TCP_FR_DEBUG: Enable debugging in tcp_in.c for fast retransmit.
  1777. */
  1778. #ifndef TCP_FR_DEBUG
  1779. #define TCP_FR_DEBUG LWIP_DBG_OFF
  1780. #endif
  1781. /**
  1782. * TCP_RTO_DEBUG: Enable debugging in TCP for retransmit
  1783. * timeout.
  1784. */
  1785. #ifndef TCP_RTO_DEBUG
  1786. #define TCP_RTO_DEBUG LWIP_DBG_OFF
  1787. #endif
  1788. /**
  1789. * TCP_CWND_DEBUG: Enable debugging for TCP congestion window.
  1790. */
  1791. #ifndef TCP_CWND_DEBUG
  1792. #define TCP_CWND_DEBUG LWIP_DBG_OFF
  1793. #endif
  1794. /**
  1795. * TCP_WND_DEBUG: Enable debugging in tcp_in.c for window updating.
  1796. */
  1797. #ifndef TCP_WND_DEBUG
  1798. #define TCP_WND_DEBUG LWIP_DBG_OFF
  1799. #endif
  1800. /**
  1801. * TCP_OUTPUT_DEBUG: Enable debugging in tcp_out.c output functions.
  1802. */
  1803. #ifndef TCP_OUTPUT_DEBUG
  1804. #define TCP_OUTPUT_DEBUG LWIP_DBG_OFF
  1805. #endif
  1806. /**
  1807. * TCP_RST_DEBUG: Enable debugging for TCP with the RST message.
  1808. */
  1809. #ifndef TCP_RST_DEBUG
  1810. #define TCP_RST_DEBUG LWIP_DBG_OFF
  1811. #endif
  1812. /**
  1813. * TCP_QLEN_DEBUG: Enable debugging for TCP queue lengths.
  1814. */
  1815. #ifndef TCP_QLEN_DEBUG
  1816. #define TCP_QLEN_DEBUG LWIP_DBG_OFF
  1817. #endif
  1818. /**
  1819. * UDP_DEBUG: Enable debugging in UDP.
  1820. */
  1821. #ifndef UDP_DEBUG
  1822. #define UDP_DEBUG LWIP_DBG_OFF
  1823. #endif
  1824. /**
  1825. * TCPIP_DEBUG: Enable debugging in tcpip.c.
  1826. */
  1827. #ifndef TCPIP_DEBUG
  1828. #define TCPIP_DEBUG LWIP_DBG_OFF
  1829. #endif
  1830. /**
  1831. * PPP_DEBUG: Enable debugging for PPP.
  1832. */
  1833. #ifndef PPP_DEBUG
  1834. #define PPP_DEBUG LWIP_DBG_OFF
  1835. #endif
  1836. /**
  1837. * SLIP_DEBUG: Enable debugging in slipif.c.
  1838. */
  1839. #ifndef SLIP_DEBUG
  1840. #define SLIP_DEBUG LWIP_DBG_OFF
  1841. #endif
  1842. /**
  1843. * DHCP_DEBUG: Enable debugging in dhcp.c.
  1844. */
  1845. #ifndef DHCP_DEBUG
  1846. #define DHCP_DEBUG LWIP_DBG_OFF
  1847. #endif
  1848. /**
  1849. * AUTOIP_DEBUG: Enable debugging in autoip.c.
  1850. */
  1851. #ifndef AUTOIP_DEBUG
  1852. #define AUTOIP_DEBUG LWIP_DBG_OFF
  1853. #endif
  1854. /**
  1855. * SNMP_MSG_DEBUG: Enable debugging for SNMP messages.
  1856. */
  1857. #ifndef SNMP_MSG_DEBUG
  1858. #define SNMP_MSG_DEBUG LWIP_DBG_OFF
  1859. #endif
  1860. /**
  1861. * SNMP_MIB_DEBUG: Enable debugging for SNMP MIBs.
  1862. */
  1863. #ifndef SNMP_MIB_DEBUG
  1864. #define SNMP_MIB_DEBUG LWIP_DBG_OFF
  1865. #endif
  1866. /**
  1867. * DNS_DEBUG: Enable debugging for DNS.
  1868. */
  1869. #ifndef DNS_DEBUG
  1870. #define DNS_DEBUG LWIP_DBG_OFF
  1871. #endif
  1872. #endif /* __LWIPOPT_H__ */