<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <meta name="generator" content="Doxygen 1.8.16"/> <meta name="viewport" content="width=device-width, initial-scale=1"/> <title>UbixOS: include/net/priv/memp_std.h Source File</title> <link href="../../tabs.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="../../jquery.js"></script> <script type="text/javascript" src="../../dynsections.js"></script> <link href="../../navtree.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="../../resize.js"></script> <script type="text/javascript" src="../../navtreedata.js"></script> <script type="text/javascript" src="../../navtree.js"></script> <script type="text/javascript"> /* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */ $(document).ready(initResizable); /* @license-end */</script> <link href="../../doxygen.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 56px;"> <td id="projectalign" style="padding-left: 0.5em;"> <div id="projectname">UbixOS  <span id="projectnumber">2.0</span> </div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <!-- Generated by Doxygen 1.8.16 --> <script type="text/javascript" src="../../menudata.js"></script> <script type="text/javascript" src="../../menu.js"></script> <script type="text/javascript"> /* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */ $(function() { initMenu('../../',false,false,'search.php','Search'); }); /* @license-end */</script> <div id="main-nav"></div> </div><!-- top --> <div id="side-nav" class="ui-resizable side-nav-resizable"> <div id="nav-tree"> <div id="nav-tree-contents"> <div id="nav-sync" class="sync"></div> </div> </div> <div id="splitbar" style="-moz-user-select:none;" class="ui-resizable-handle"> </div> </div> <script type="text/javascript"> /* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */ $(document).ready(function(){initNavTree('d6/d7f/memp__std_8h_source.html','../../');}); /* @license-end */ </script> <div id="doc-content"> <div class="header"> <div class="headertitle"> <div class="title">memp_std.h</div> </div> </div><!--header--> <div class="contents"> <a href="../../d6/d7f/memp__std_8h.html">Go to the documentation of this file.</a><div class="fragment"><div class="line"><a name="l00001"></a><span class="lineno"> 1</span>  </div> <div class="line"><a name="l00009"></a><span class="lineno"> 9</span> <span class="comment">/*</span></div> <div class="line"><a name="l00010"></a><span class="lineno"> 10</span> <span class="comment"> * SETUP: Make sure we define everything we will need.</span></div> <div class="line"><a name="l00011"></a><span class="lineno"> 11</span> <span class="comment"> *</span></div> <div class="line"><a name="l00012"></a><span class="lineno"> 12</span> <span class="comment"> * We have create three types of pools:</span></div> <div class="line"><a name="l00013"></a><span class="lineno"> 13</span> <span class="comment"> * 1) MEMPOOL - standard pools</span></div> <div class="line"><a name="l00014"></a><span class="lineno"> 14</span> <span class="comment"> * 2) MALLOC_MEMPOOL - to be used by mem_malloc in mem.c</span></div> <div class="line"><a name="l00015"></a><span class="lineno"> 15</span> <span class="comment"> * 3) PBUF_MEMPOOL - a mempool of pbuf's, so include space for the pbuf struct</span></div> <div class="line"><a name="l00016"></a><span class="lineno"> 16</span> <span class="comment"> *</span></div> <div class="line"><a name="l00017"></a><span class="lineno"> 17</span> <span class="comment"> * If the include'r doesn't require any special treatment of each of the types</span></div> <div class="line"><a name="l00018"></a><span class="lineno"> 18</span> <span class="comment"> * above, then will declare #2 & #3 to be just standard mempools.</span></div> <div class="line"><a name="l00019"></a><span class="lineno"> 19</span> <span class="comment"> */</span></div> <div class="line"><a name="l00020"></a><span class="lineno"> 20</span> <span class="preprocessor">#ifndef LWIP_MALLOC_MEMPOOL</span></div> <div class="line"><a name="l00021"></a><span class="lineno"> 21</span> <span class="comment">/* This treats "malloc pools" just like any other pool.</span></div> <div class="line"><a name="l00022"></a><span class="lineno"> 22</span> <span class="comment"> The pools are a little bigger to provide 'size' as the amount of user data. */</span></div> <div class="line"><a name="l00023"></a><span class="lineno"><a class="line" href="../../d6/d7f/memp__std_8h.html#a2a2ee070ed2e841bdf67f9379780e03d"> 23</a></span> <span class="preprocessor">#define LWIP_MALLOC_MEMPOOL(num, size) LWIP_MEMPOOL(POOL_##size, num, (size + LWIP_MEM_ALIGN_SIZE(sizeof(struct memp_malloc_helper))), "MALLOC_"#size)</span></div> <div class="line"><a name="l00024"></a><span class="lineno"><a class="line" href="../../d6/d7f/memp__std_8h.html#a0bc6a0d68500481012310ae5e44f4735"> 24</a></span> <span class="preprocessor">#define LWIP_MALLOC_MEMPOOL_START</span></div> <div class="line"><a name="l00025"></a><span class="lineno"><a class="line" href="../../d6/d7f/memp__std_8h.html#aa28365e96383d5262b08f8113b7f7c6d"> 25</a></span> <span class="preprocessor">#define LWIP_MALLOC_MEMPOOL_END</span></div> <div class="line"><a name="l00026"></a><span class="lineno"> 26</span> <span class="preprocessor">#endif </span><span class="comment">/* LWIP_MALLOC_MEMPOOL */</span><span class="preprocessor"></span></div> <div class="line"><a name="l00027"></a><span class="lineno"> 27</span>  </div> <div class="line"><a name="l00028"></a><span class="lineno"> 28</span> <span class="preprocessor">#ifndef LWIP_PBUF_MEMPOOL</span></div> <div class="line"><a name="l00029"></a><span class="lineno"> 29</span> <span class="comment">/* This treats "pbuf pools" just like any other pool.</span></div> <div class="line"><a name="l00030"></a><span class="lineno"> 30</span> <span class="comment"> * Allocates buffers for a pbuf struct AND a payload size */</span></div> <div class="line"><a name="l00031"></a><span class="lineno"><a class="line" href="../../d6/d7f/memp__std_8h.html#a4ed41263feeda39be71d3aa9440494ad"> 31</a></span> <span class="preprocessor">#define LWIP_PBUF_MEMPOOL(name, num, payload, desc) LWIP_MEMPOOL(name, num, (MEMP_ALIGN_SIZE(sizeof(struct pbuf)) + MEMP_ALIGN_SIZE(payload)), desc)</span></div> <div class="line"><a name="l00032"></a><span class="lineno"> 32</span> <span class="preprocessor">#endif </span><span class="comment">/* LWIP_PBUF_MEMPOOL */</span><span class="preprocessor"></span></div> <div class="line"><a name="l00033"></a><span class="lineno"> 33</span>  </div> <div class="line"><a name="l00034"></a><span class="lineno"> 34</span>  </div> <div class="line"><a name="l00035"></a><span class="lineno"> 35</span> <span class="comment">/*</span></div> <div class="line"><a name="l00036"></a><span class="lineno"> 36</span> <span class="comment"> * A list of internal pools used by LWIP.</span></div> <div class="line"><a name="l00037"></a><span class="lineno"> 37</span> <span class="comment"> *</span></div> <div class="line"><a name="l00038"></a><span class="lineno"> 38</span> <span class="comment"> * LWIP_MEMPOOL(pool_name, number_elements, element_size, pool_description)</span></div> <div class="line"><a name="l00039"></a><span class="lineno"> 39</span> <span class="comment"> * creates a pool name MEMP_pool_name. description is used in stats.c</span></div> <div class="line"><a name="l00040"></a><span class="lineno"> 40</span> <span class="comment"> */</span></div> <div class="line"><a name="l00041"></a><span class="lineno"> 41</span> <span class="preprocessor">#if LWIP_RAW</span></div> <div class="line"><a name="l00042"></a><span class="lineno"> 42</span> <a class="code" href="../../d6/d7f/memp__std_8h.html#a922d258cde897fffc15fb1b4b0623e97">LWIP_MEMPOOL</a>(RAW_PCB, <a class="code" href="../../d2/d78/lwipopts_8h.html#a379bf92ed322cda54cb701337421e0d3">MEMP_NUM_RAW_PCB</a>, <span class="keyword">sizeof</span>(<span class="keyword">struct</span> raw_pcb), <span class="stringliteral">"RAW_PCB"</span>)</div> <div class="line"><a name="l00043"></a><span class="lineno"> 43</span> <span class="preprocessor">#endif </span><span class="comment">/* LWIP_RAW */</span><span class="preprocessor"></span></div> <div class="line"><a name="l00044"></a><span class="lineno"> 44</span>  </div> <div class="line"><a name="l00045"></a><span class="lineno"> 45</span> <span class="preprocessor">#if LWIP_UDP</span></div> <div class="line"><a name="l00046"></a><span class="lineno"> 46</span> <a class="code" href="../../d6/d7f/memp__std_8h.html#a922d258cde897fffc15fb1b4b0623e97">LWIP_MEMPOOL</a>(UDP_PCB, <a class="code" href="../../d2/d78/lwipopts_8h.html#a2c416da481ab09bd1ba257b75a0707eb">MEMP_NUM_UDP_PCB</a>, <span class="keyword">sizeof</span>(<span class="keyword">struct</span> udp_pcb), <span class="stringliteral">"UDP_PCB"</span>)</div> <div class="line"><a name="l00047"></a><span class="lineno"> 47</span> <span class="preprocessor">#endif </span><span class="comment">/* LWIP_UDP */</span><span class="preprocessor"></span></div> <div class="line"><a name="l00048"></a><span class="lineno"> 48</span>  </div> <div class="line"><a name="l00049"></a><span class="lineno"> 49</span> <span class="preprocessor">#if LWIP_TCP</span></div> <div class="line"><a name="l00050"></a><span class="lineno"> 50</span> <a class="code" href="../../d6/d7f/memp__std_8h.html#a922d258cde897fffc15fb1b4b0623e97">LWIP_MEMPOOL</a>(TCP_PCB, <a class="code" href="../../d2/d78/lwipopts_8h.html#a73beecc19cfbc3114768f9b32b2cd70e">MEMP_NUM_TCP_PCB</a>, <span class="keyword">sizeof</span>(<span class="keyword">struct</span> tcp_pcb), <span class="stringliteral">"TCP_PCB"</span>)</div> <div class="line"><a name="l00051"></a><span class="lineno"> 51</span> <a class="code" href="../../d6/d7f/memp__std_8h.html#a922d258cde897fffc15fb1b4b0623e97">LWIP_MEMPOOL</a>(TCP_PCB_LISTEN, <a class="code" href="../../d2/d78/lwipopts_8h.html#a04fba6a249123513271dccb4ec26aa5a">MEMP_NUM_TCP_PCB_LISTEN</a>, sizeof(struct tcp_pcb_listen), "TCP_PCB_LISTEN")</div> <div class="line"><a name="l00052"></a><span class="lineno"> 52</span> <a class="code" href="../../d6/d7f/memp__std_8h.html#a922d258cde897fffc15fb1b4b0623e97">LWIP_MEMPOOL</a>(TCP_SEG, <a class="code" href="../../d2/d78/lwipopts_8h.html#aa35fb3a1a76661e3ffb9722a57092de3">MEMP_NUM_TCP_SEG</a>, sizeof(struct tcp_seg), "TCP_SEG")</div> <div class="line"><a name="l00053"></a><span class="lineno"> 53</span> <span class="preprocessor">#endif </span><span class="comment">/* LWIP_TCP */</span><span class="preprocessor"></span></div> <div class="line"><a name="l00054"></a><span class="lineno"> 54</span>  </div> <div class="line"><a name="l00055"></a><span class="lineno"> 55</span> <span class="preprocessor">#if LWIP_IPV4 && IP_REASSEMBLY</span></div> <div class="line"><a name="l00056"></a><span class="lineno"> 56</span> <a class="code" href="../../d6/d7f/memp__std_8h.html#a922d258cde897fffc15fb1b4b0623e97">LWIP_MEMPOOL</a>(REASSDATA, <a class="code" href="../../d2/d78/lwipopts_8h.html#a169436c5860253b90e25bdba9fdcac86">MEMP_NUM_REASSDATA</a>, <span class="keyword">sizeof</span>(<span class="keyword">struct</span> ip_reassdata), <span class="stringliteral">"REASSDATA"</span>)</div> <div class="line"><a name="l00057"></a><span class="lineno"> 57</span> <span class="preprocessor">#endif </span><span class="comment">/* LWIP_IPV4 && IP_REASSEMBLY */</span><span class="preprocessor"></span></div> <div class="line"><a name="l00058"></a><span class="lineno"> 58</span> <span class="preprocessor">#if (IP_FRAG && !LWIP_NETIF_TX_SINGLE_PBUF) || (LWIP_IPV6 && LWIP_IPV6_FRAG)</span></div> <div class="line"><a name="l00059"></a><span class="lineno"> 59</span> <a class="code" href="../../d6/d7f/memp__std_8h.html#a922d258cde897fffc15fb1b4b0623e97">LWIP_MEMPOOL</a>(FRAG_PBUF, <a class="code" href="../../d2/d78/lwipopts_8h.html#a1f66051a654dcd7a4e19bc6aff240630">MEMP_NUM_FRAG_PBUF</a>, <span class="keyword">sizeof</span>(<span class="keyword">struct</span> pbuf_custom_ref),<span class="stringliteral">"FRAG_PBUF"</span>)</div> <div class="line"><a name="l00060"></a><span class="lineno"> 60</span> <span class="preprocessor">#endif </span><span class="comment">/* IP_FRAG && !LWIP_NETIF_TX_SINGLE_PBUF || (LWIP_IPV6 && LWIP_IPV6_FRAG) */</span><span class="preprocessor"></span></div> <div class="line"><a name="l00061"></a><span class="lineno"> 61</span>  </div> <div class="line"><a name="l00062"></a><span class="lineno"> 62</span> <span class="preprocessor">#if LWIP_NETCONN || LWIP_SOCKET</span></div> <div class="line"><a name="l00063"></a><span class="lineno"> 63</span> <a class="code" href="../../d6/d7f/memp__std_8h.html#a922d258cde897fffc15fb1b4b0623e97">LWIP_MEMPOOL</a>(NETBUF, <a class="code" href="../../d2/d78/lwipopts_8h.html#a5d99df65869ac101ed6a611fc85016be">MEMP_NUM_NETBUF</a>, <span class="keyword">sizeof</span>(<span class="keyword">struct</span> netbuf), <span class="stringliteral">"NETBUF"</span>)</div> <div class="line"><a name="l00064"></a><span class="lineno"> 64</span> <a class="code" href="../../d6/d7f/memp__std_8h.html#a922d258cde897fffc15fb1b4b0623e97">LWIP_MEMPOOL</a>(NETCONN, <a class="code" href="../../d2/d78/lwipopts_8h.html#acb40bd726b7e15593b20a628d298f456">MEMP_NUM_NETCONN</a>, sizeof(struct netconn), "NETCONN")</div> <div class="line"><a name="l00065"></a><span class="lineno"> 65</span> <span class="preprocessor">#endif </span><span class="comment">/* LWIP_NETCONN || LWIP_SOCKET */</span><span class="preprocessor"></span></div> <div class="line"><a name="l00066"></a><span class="lineno"> 66</span>  </div> <div class="line"><a name="l00067"></a><span class="lineno"> 67</span> <span class="preprocessor">#if NO_SYS==0</span></div> <div class="line"><a name="l00068"></a><span class="lineno"> 68</span> <a class="code" href="../../d6/d7f/memp__std_8h.html#a922d258cde897fffc15fb1b4b0623e97">LWIP_MEMPOOL</a>(<a class="code" href="../../d6/d89/tcpip__priv_8h.html#a1e0cb5032a61055e3f4a3426ed548937a8665d0f2f1498c366e90d67a1e4c7f80">TCPIP_MSG_API</a>, <a class="code" href="../../d2/d78/lwipopts_8h.html#afbbfd6ce8536038cd00fa85bebae987c">MEMP_NUM_TCPIP_MSG_API</a>, <span class="keyword">sizeof</span>(<span class="keyword">struct</span> <a class="code" href="../../d4/de8/structtcpip__msg.html">tcpip_msg</a>), <span class="stringliteral">"TCPIP_MSG_API"</span>)</div> <div class="line"><a name="l00069"></a><span class="lineno"> 69</span> <span class="preprocessor">#if LWIP_MPU_COMPATIBLE</span></div> <div class="line"><a name="l00070"></a><span class="lineno"> 70</span> <a class="code" href="../../d6/d7f/memp__std_8h.html#a922d258cde897fffc15fb1b4b0623e97">LWIP_MEMPOOL</a>(API_MSG, <a class="code" href="../../d2/d78/lwipopts_8h.html#a5a95abf3610c56e7c23cb035eb9c3444">MEMP_NUM_API_MSG</a>, <span class="keyword">sizeof</span>(<span class="keyword">struct</span> api_msg), <span class="stringliteral">"API_MSG"</span>)</div> <div class="line"><a name="l00071"></a><span class="lineno"> 71</span> <span class="preprocessor">#if LWIP_DNS</span></div> <div class="line"><a name="l00072"></a><span class="lineno"> 72</span> <a class="code" href="../../d6/d7f/memp__std_8h.html#a922d258cde897fffc15fb1b4b0623e97">LWIP_MEMPOOL</a>(DNS_API_MSG, <a class="code" href="../../d2/d78/lwipopts_8h.html#a3b1f228c598529c62895ad04ff294980">MEMP_NUM_DNS_API_MSG</a>, <span class="keyword">sizeof</span>(<span class="keyword">struct</span> dns_api_msg), <span class="stringliteral">"DNS_API_MSG"</span>)</div> <div class="line"><a name="l00073"></a><span class="lineno"> 73</span> <span class="preprocessor">#endif</span></div> <div class="line"><a name="l00074"></a><span class="lineno"> 74</span> <span class="preprocessor">#if LWIP_SOCKET && !LWIP_TCPIP_CORE_LOCKING</span></div> <div class="line"><a name="l00075"></a><span class="lineno"> 75</span> <a class="code" href="../../d6/d7f/memp__std_8h.html#a922d258cde897fffc15fb1b4b0623e97">LWIP_MEMPOOL</a>(SOCKET_SETGETSOCKOPT_DATA, <a class="code" href="../../d2/d78/lwipopts_8h.html#acf9782dd26bf8a655044dc041a9de948">MEMP_NUM_SOCKET_SETGETSOCKOPT_DATA</a>, <span class="keyword">sizeof</span>(<span class="keyword">struct</span> lwip_setgetsockopt_data), <span class="stringliteral">"SOCKET_SETGETSOCKOPT_DATA"</span>)</div> <div class="line"><a name="l00076"></a><span class="lineno"> 76</span> <span class="preprocessor">#endif</span></div> <div class="line"><a name="l00077"></a><span class="lineno"> 77</span> <span class="preprocessor">#if LWIP_NETIF_API</span></div> <div class="line"><a name="l00078"></a><span class="lineno"> 78</span> <a class="code" href="../../d6/d7f/memp__std_8h.html#a922d258cde897fffc15fb1b4b0623e97">LWIP_MEMPOOL</a>(NETIFAPI_MSG, <a class="code" href="../../d2/d78/lwipopts_8h.html#add5a973b98068ce9318ea2f96b5fa14c">MEMP_NUM_NETIFAPI_MSG</a>, <span class="keyword">sizeof</span>(<span class="keyword">struct</span> netifapi_msg), <span class="stringliteral">"NETIFAPI_MSG"</span>)</div> <div class="line"><a name="l00079"></a><span class="lineno"> 79</span> <span class="preprocessor">#endif</span></div> <div class="line"><a name="l00080"></a><span class="lineno"> 80</span> <span class="preprocessor">#endif </span><span class="comment">/* LWIP_MPU_COMPATIBLE */</span><span class="preprocessor"></span></div> <div class="line"><a name="l00081"></a><span class="lineno"> 81</span> <span class="preprocessor">#if !LWIP_TCPIP_CORE_LOCKING_INPUT</span></div> <div class="line"><a name="l00082"></a><span class="lineno"> 82</span> <a class="code" href="../../d6/d7f/memp__std_8h.html#a922d258cde897fffc15fb1b4b0623e97">LWIP_MEMPOOL</a>(<a class="code" href="../../d6/d89/tcpip__priv_8h.html#a1e0cb5032a61055e3f4a3426ed548937a64972ba60577a99b44f088e0b5150c8a">TCPIP_MSG_INPKT</a>,<a class="code" href="../../d2/d78/lwipopts_8h.html#ab089a7088439e726c3801ba9e249d831">MEMP_NUM_TCPIP_MSG_INPKT</a>, <span class="keyword">sizeof</span>(<span class="keyword">struct</span> <a class="code" href="../../d4/de8/structtcpip__msg.html">tcpip_msg</a>), <span class="stringliteral">"TCPIP_MSG_INPKT"</span>)</div> <div class="line"><a name="l00083"></a><span class="lineno"> 83</span> <span class="preprocessor">#endif </span><span class="comment">/* !LWIP_TCPIP_CORE_LOCKING_INPUT */</span><span class="preprocessor"></span></div> <div class="line"><a name="l00084"></a><span class="lineno"> 84</span> <span class="preprocessor">#endif </span><span class="comment">/* NO_SYS==0 */</span><span class="preprocessor"></span></div> <div class="line"><a name="l00085"></a><span class="lineno"> 85</span>  </div> <div class="line"><a name="l00086"></a><span class="lineno"> 86</span> <span class="preprocessor">#if LWIP_IPV4 && LWIP_ARP && ARP_QUEUEING</span></div> <div class="line"><a name="l00087"></a><span class="lineno"> 87</span> <a class="code" href="../../d6/d7f/memp__std_8h.html#a922d258cde897fffc15fb1b4b0623e97">LWIP_MEMPOOL</a>(ARP_QUEUE, <a class="code" href="../../d2/d78/lwipopts_8h.html#a087b00ea20a7edebcad33a1a1353a5d7">MEMP_NUM_ARP_QUEUE</a>, <span class="keyword">sizeof</span>(<span class="keyword">struct</span> etharp_q_entry), <span class="stringliteral">"ARP_QUEUE"</span>)</div> <div class="line"><a name="l00088"></a><span class="lineno"> 88</span> <span class="preprocessor">#endif </span><span class="comment">/* LWIP_IPV4 && LWIP_ARP && ARP_QUEUEING */</span><span class="preprocessor"></span></div> <div class="line"><a name="l00089"></a><span class="lineno"> 89</span>  </div> <div class="line"><a name="l00090"></a><span class="lineno"> 90</span> <span class="preprocessor">#if LWIP_IGMP</span></div> <div class="line"><a name="l00091"></a><span class="lineno"> 91</span> <a class="code" href="../../d6/d7f/memp__std_8h.html#a922d258cde897fffc15fb1b4b0623e97">LWIP_MEMPOOL</a>(IGMP_GROUP, <a class="code" href="../../d2/d78/lwipopts_8h.html#ab648ff95d8ffa4216b95f82a568a5d9a">MEMP_NUM_IGMP_GROUP</a>, <span class="keyword">sizeof</span>(<span class="keyword">struct</span> igmp_group), <span class="stringliteral">"IGMP_GROUP"</span>)</div> <div class="line"><a name="l00092"></a><span class="lineno"> 92</span> <span class="preprocessor">#endif </span><span class="comment">/* LWIP_IGMP */</span><span class="preprocessor"></span></div> <div class="line"><a name="l00093"></a><span class="lineno"> 93</span>  </div> <div class="line"><a name="l00094"></a><span class="lineno"> 94</span> <span class="preprocessor">#if LWIP_TIMERS && !LWIP_TIMERS_CUSTOM</span></div> <div class="line"><a name="l00095"></a><span class="lineno"> 95</span> <a class="code" href="../../d6/d7f/memp__std_8h.html#a922d258cde897fffc15fb1b4b0623e97">LWIP_MEMPOOL</a>(SYS_TIMEOUT, <a class="code" href="../../d2/d78/lwipopts_8h.html#a4afbdca581a58d57bc7a81118a95327e">MEMP_NUM_SYS_TIMEOUT</a>, <span class="keyword">sizeof</span>(<span class="keyword">struct</span> sys_timeo), <span class="stringliteral">"SYS_TIMEOUT"</span>)</div> <div class="line"><a name="l00096"></a><span class="lineno"> 96</span> <span class="preprocessor">#endif </span><span class="comment">/* LWIP_TIMERS && !LWIP_TIMERS_CUSTOM */</span><span class="preprocessor"></span></div> <div class="line"><a name="l00097"></a><span class="lineno"> 97</span>  </div> <div class="line"><a name="l00098"></a><span class="lineno"> 98</span> <span class="preprocessor">#if LWIP_DNS && LWIP_SOCKET</span></div> <div class="line"><a name="l00099"></a><span class="lineno"> 99</span> <a class="code" href="../../d6/d7f/memp__std_8h.html#a922d258cde897fffc15fb1b4b0623e97">LWIP_MEMPOOL</a>(NETDB, <a class="code" href="../../d2/d78/lwipopts_8h.html#a293bc22b60bf3f8e2520f60a88370e7a">MEMP_NUM_NETDB</a>, NETDB_ELEM_SIZE, <span class="stringliteral">"NETDB"</span>)</div> <div class="line"><a name="l00100"></a><span class="lineno"> 100</span> <span class="preprocessor">#endif </span><span class="comment">/* LWIP_DNS && LWIP_SOCKET */</span><span class="preprocessor"></span></div> <div class="line"><a name="l00101"></a><span class="lineno"> 101</span> <span class="preprocessor">#if LWIP_DNS && DNS_LOCAL_HOSTLIST && DNS_LOCAL_HOSTLIST_IS_DYNAMIC</span></div> <div class="line"><a name="l00102"></a><span class="lineno"> 102</span> <a class="code" href="../../d6/d7f/memp__std_8h.html#a922d258cde897fffc15fb1b4b0623e97">LWIP_MEMPOOL</a>(LOCALHOSTLIST, <a class="code" href="../../d2/d78/lwipopts_8h.html#aa9b0f949da12cbe8fe5f7aefc30290e0">MEMP_NUM_LOCALHOSTLIST</a>, LOCALHOSTLIST_ELEM_SIZE, <span class="stringliteral">"LOCALHOSTLIST"</span>)</div> <div class="line"><a name="l00103"></a><span class="lineno"> 103</span> <span class="preprocessor">#endif </span><span class="comment">/* LWIP_DNS && DNS_LOCAL_HOSTLIST && DNS_LOCAL_HOSTLIST_IS_DYNAMIC */</span><span class="preprocessor"></span></div> <div class="line"><a name="l00104"></a><span class="lineno"> 104</span>  </div> <div class="line"><a name="l00105"></a><span class="lineno"> 105</span> <span class="preprocessor">#if LWIP_IPV6 && LWIP_ND6_QUEUEING</span></div> <div class="line"><a name="l00106"></a><span class="lineno"> 106</span> <a class="code" href="../../d6/d7f/memp__std_8h.html#a922d258cde897fffc15fb1b4b0623e97">LWIP_MEMPOOL</a>(ND6_QUEUE, <a class="code" href="../../d2/d78/lwipopts_8h.html#abfaf3d92d51e2a9d70c8360af2611fb2">MEMP_NUM_ND6_QUEUE</a>, <span class="keyword">sizeof</span>(<span class="keyword">struct</span> nd6_q_entry), <span class="stringliteral">"ND6_QUEUE"</span>)</div> <div class="line"><a name="l00107"></a><span class="lineno"> 107</span> <span class="preprocessor">#endif </span><span class="comment">/* LWIP_IPV6 && LWIP_ND6_QUEUEING */</span><span class="preprocessor"></span></div> <div class="line"><a name="l00108"></a><span class="lineno"> 108</span>  </div> <div class="line"><a name="l00109"></a><span class="lineno"> 109</span> <span class="preprocessor">#if LWIP_IPV6 && LWIP_IPV6_REASS</span></div> <div class="line"><a name="l00110"></a><span class="lineno"> 110</span> <a class="code" href="../../d6/d7f/memp__std_8h.html#a922d258cde897fffc15fb1b4b0623e97">LWIP_MEMPOOL</a>(IP6_REASSDATA, <a class="code" href="../../d2/d78/lwipopts_8h.html#a169436c5860253b90e25bdba9fdcac86">MEMP_NUM_REASSDATA</a>, <span class="keyword">sizeof</span>(<span class="keyword">struct</span> ip6_reassdata), <span class="stringliteral">"IP6_REASSDATA"</span>)</div> <div class="line"><a name="l00111"></a><span class="lineno"> 111</span> <span class="preprocessor">#endif </span><span class="comment">/* LWIP_IPV6 && LWIP_IPV6_REASS */</span><span class="preprocessor"></span></div> <div class="line"><a name="l00112"></a><span class="lineno"> 112</span>  </div> <div class="line"><a name="l00113"></a><span class="lineno"> 113</span> <span class="preprocessor">#if LWIP_IPV6 && LWIP_IPV6_MLD</span></div> <div class="line"><a name="l00114"></a><span class="lineno"> 114</span> <a class="code" href="../../d6/d7f/memp__std_8h.html#a922d258cde897fffc15fb1b4b0623e97">LWIP_MEMPOOL</a>(MLD6_GROUP, <a class="code" href="../../d2/d78/lwipopts_8h.html#a89e92d8de8898696e797f13fdd169494">MEMP_NUM_MLD6_GROUP</a>, <span class="keyword">sizeof</span>(<span class="keyword">struct</span> mld_group), <span class="stringliteral">"MLD6_GROUP"</span>)</div> <div class="line"><a name="l00115"></a><span class="lineno"> 115</span> <span class="preprocessor">#endif </span><span class="comment">/* LWIP_IPV6 && LWIP_IPV6_MLD */</span><span class="preprocessor"></span></div> <div class="line"><a name="l00116"></a><span class="lineno"> 116</span>  </div> <div class="line"><a name="l00117"></a><span class="lineno"> 117</span>  </div> <div class="line"><a name="l00118"></a><span class="lineno"> 118</span> <span class="comment">/*</span></div> <div class="line"><a name="l00119"></a><span class="lineno"> 119</span> <span class="comment"> * A list of pools of pbuf's used by LWIP.</span></div> <div class="line"><a name="l00120"></a><span class="lineno"> 120</span> <span class="comment"> *</span></div> <div class="line"><a name="l00121"></a><span class="lineno"> 121</span> <span class="comment"> * LWIP_PBUF_MEMPOOL(pool_name, number_elements, pbuf_payload_size, pool_description)</span></div> <div class="line"><a name="l00122"></a><span class="lineno"> 122</span> <span class="comment"> * creates a pool name MEMP_pool_name. description is used in stats.c</span></div> <div class="line"><a name="l00123"></a><span class="lineno"> 123</span> <span class="comment"> * This allocates enough space for the pbuf struct and a payload.</span></div> <div class="line"><a name="l00124"></a><span class="lineno"> 124</span> <span class="comment"> * (Example: pbuf_payload_size=0 allocates only size for the struct)</span></div> <div class="line"><a name="l00125"></a><span class="lineno"> 125</span> <span class="comment"> */</span></div> <div class="line"><a name="l00126"></a><span class="lineno"> 126</span> <a class="code" href="../../d6/d7f/memp__std_8h.html#a4ed41263feeda39be71d3aa9440494ad">LWIP_PBUF_MEMPOOL</a>(PBUF, <a class="code" href="../../d2/d78/lwipopts_8h.html#a92b30aed958ec59334d936d4ca725418">MEMP_NUM_PBUF</a>, 0, <span class="stringliteral">"PBUF_REF/ROM"</span>)</div> <div class="line"><a name="l00127"></a><span class="lineno"><a class="line" href="../../d6/d7f/memp__std_8h.html#ac4764284e3c86a71b167c5cb76ef43c2"> 127</a></span> <a class="code" href="../../d6/d7f/memp__std_8h.html#a4ed41263feeda39be71d3aa9440494ad">LWIP_PBUF_MEMPOOL</a>(<a class="code" href="../../d7/d05/group__pbuf.html#ggab7e0e32fcc292c0d7107721766ed92fbae969347127387b9b59a23ccd24b76d21">PBUF_POOL</a>, <a class="code" href="../../d6/d7f/memp__std_8h.html#ac4764284e3c86a71b167c5cb76ef43c2">PBUF_POOL_SIZE</a>, <a class="code" href="../../d2/d78/lwipopts_8h.html#ae61f4491d56e805e79b79eb5d35a00e5">PBUF_POOL_BUFSIZE</a>, "<a class="code" href="../../d7/d05/group__pbuf.html#ggab7e0e32fcc292c0d7107721766ed92fbae969347127387b9b59a23ccd24b76d21">PBUF_POOL</a>")</div> <div class="line"><a name="l00128"></a><span class="lineno"> 128</span>  </div> <div class="line"><a name="l00129"></a><span class="lineno"> 129</span>  </div> <div class="line"><a name="l00130"></a><span class="lineno"> 130</span> <span class="comment">/*</span></div> <div class="line"><a name="l00131"></a><span class="lineno"> 131</span> <span class="comment"> * Allow for user-defined pools; this must be explicitly set in lwipopts.h</span></div> <div class="line"><a name="l00132"></a><span class="lineno"> 132</span> <span class="comment"> * since the default is to NOT look for lwippools.h</span></div> <div class="line"><a name="l00133"></a><span class="lineno"> 133</span> <span class="comment"> */</span></div> <div class="line"><a name="l00134"></a><span class="lineno"> 134</span> <span class="preprocessor">#if MEMP_USE_CUSTOM_POOLS</span></div> <div class="line"><a name="l00135"></a><span class="lineno"> 135</span> <span class="preprocessor">#include "lwippools.h"</span></div> <div class="line"><a name="l00136"></a><span class="lineno"> 136</span> <span class="preprocessor">#endif </span><span class="comment">/* MEMP_USE_CUSTOM_POOLS */</span><span class="preprocessor"></span></div> <div class="line"><a name="l00137"></a><span class="lineno"> 137</span>  </div> <div class="line"><a name="l00138"></a><span class="lineno"> 138</span> <span class="comment">/*</span></div> <div class="line"><a name="l00139"></a><span class="lineno"> 139</span> <span class="comment"> * REQUIRED CLEANUP: Clear up so we don't get "multiply defined" error later</span></div> <div class="line"><a name="l00140"></a><span class="lineno"> 140</span> <span class="comment"> * (#undef is ignored for something that is not defined)</span></div> <div class="line"><a name="l00141"></a><span class="lineno"> 141</span> <span class="comment"> */</span></div> <div class="line"><a name="l00142"></a><span class="lineno"> 142</span> <span class="preprocessor">#undef LWIP_MEMPOOL</span></div> <div class="line"><a name="l00143"></a><span class="lineno"> 143</span> <span class="preprocessor">#undef LWIP_MALLOC_MEMPOOL</span></div> <div class="line"><a name="l00144"></a><span class="lineno"> 144</span> <span class="preprocessor">#undef LWIP_MALLOC_MEMPOOL_START</span></div> <div class="line"><a name="l00145"></a><span class="lineno"> 145</span> <span class="preprocessor">#undef LWIP_MALLOC_MEMPOOL_END</span></div> <div class="line"><a name="l00146"></a><span class="lineno"> 146</span> <span class="preprocessor">#undef LWIP_PBUF_MEMPOOL</span></div> </div><!-- fragment --></div><!-- contents --> </div><!-- doc-content --> <div class="ttc" id="agroup__pbuf_html_ggab7e0e32fcc292c0d7107721766ed92fbae969347127387b9b59a23ccd24b76d21"><div class="ttname"><a href="../../d7/d05/group__pbuf.html#ggab7e0e32fcc292c0d7107721766ed92fbae969347127387b9b59a23ccd24b76d21">PBUF_POOL</a></div><div class="ttdef"><b>Definition:</b> <a href="../../d0/d35/pbuf_8h_source.html#l00123">pbuf.h:123</a></div></div> <div class="ttc" id="alwipopts_8h_html_aa9b0f949da12cbe8fe5f7aefc30290e0"><div class="ttname"><a href="../../d2/d78/lwipopts_8h.html#aa9b0f949da12cbe8fe5f7aefc30290e0">MEMP_NUM_LOCALHOSTLIST</a></div><div class="ttdeci">#define MEMP_NUM_LOCALHOSTLIST</div><div class="ttdef"><b>Definition:</b> <a href="../../d2/d78/lwipopts_8h_source.html#l00070">lwipopts.h:70</a></div></div> <div class="ttc" id="alwipopts_8h_html_a2c416da481ab09bd1ba257b75a0707eb"><div class="ttname"><a href="../../d2/d78/lwipopts_8h.html#a2c416da481ab09bd1ba257b75a0707eb">MEMP_NUM_UDP_PCB</a></div><div class="ttdeci">#define MEMP_NUM_UDP_PCB</div><div class="ttdef"><b>Definition:</b> <a href="../../d2/d78/lwipopts_8h_source.html#l00084">lwipopts.h:84</a></div></div> <div class="ttc" id="alwipopts_8h_html_ab648ff95d8ffa4216b95f82a568a5d9a"><div class="ttname"><a href="../../d2/d78/lwipopts_8h.html#ab648ff95d8ffa4216b95f82a568a5d9a">MEMP_NUM_IGMP_GROUP</a></div><div class="ttdeci">#define MEMP_NUM_IGMP_GROUP</div><div class="ttdef"><b>Definition:</b> <a href="../../d2/d78/lwipopts_8h_source.html#l00069">lwipopts.h:69</a></div></div> <div class="ttc" id="alwipopts_8h_html_a087b00ea20a7edebcad33a1a1353a5d7"><div class="ttname"><a href="../../d2/d78/lwipopts_8h.html#a087b00ea20a7edebcad33a1a1353a5d7">MEMP_NUM_ARP_QUEUE</a></div><div class="ttdeci">#define MEMP_NUM_ARP_QUEUE</div><div class="ttdef"><b>Definition:</b> <a href="../../d2/d78/lwipopts_8h_source.html#l00066">lwipopts.h:66</a></div></div> <div class="ttc" id="alwipopts_8h_html_a89e92d8de8898696e797f13fdd169494"><div class="ttname"><a href="../../d2/d78/lwipopts_8h.html#a89e92d8de8898696e797f13fdd169494">MEMP_NUM_MLD6_GROUP</a></div><div class="ttdeci">#define MEMP_NUM_MLD6_GROUP</div><div class="ttdef"><b>Definition:</b> <a href="../../d2/d78/lwipopts_8h_source.html#l00378">lwipopts.h:378</a></div></div> <div class="ttc" id="atcpip__priv_8h_html_a1e0cb5032a61055e3f4a3426ed548937a64972ba60577a99b44f088e0b5150c8a"><div class="ttname"><a href="../../d6/d89/tcpip__priv_8h.html#a1e0cb5032a61055e3f4a3426ed548937a64972ba60577a99b44f088e0b5150c8a">TCPIP_MSG_INPKT</a></div><div class="ttdef"><b>Definition:</b> <a href="../../d6/d89/tcpip__priv_8h_source.html#l00114">tcpip_priv.h:114</a></div></div> <div class="ttc" id="alwipopts_8h_html_afbbfd6ce8536038cd00fa85bebae987c"><div class="ttname"><a href="../../d2/d78/lwipopts_8h.html#afbbfd6ce8536038cd00fa85bebae987c">MEMP_NUM_TCPIP_MSG_API</a></div><div class="ttdeci">#define MEMP_NUM_TCPIP_MSG_API</div><div class="ttdef"><b>Definition:</b> <a href="../../d2/d78/lwipopts_8h_source.html#l00082">lwipopts.h:82</a></div></div> <div class="ttc" id="alwipopts_8h_html_a04fba6a249123513271dccb4ec26aa5a"><div class="ttname"><a href="../../d2/d78/lwipopts_8h.html#a04fba6a249123513271dccb4ec26aa5a">MEMP_NUM_TCP_PCB_LISTEN</a></div><div class="ttdeci">#define MEMP_NUM_TCP_PCB_LISTEN</div><div class="ttdef"><b>Definition:</b> <a href="../../d2/d78/lwipopts_8h_source.html#l00080">lwipopts.h:80</a></div></div> <div class="ttc" id="amemp__std_8h_html_a922d258cde897fffc15fb1b4b0623e97"><div class="ttname"><a href="../../d6/d7f/memp__std_8h.html#a922d258cde897fffc15fb1b4b0623e97">LWIP_MEMPOOL</a></div><div class="ttdeci">LWIP_MEMPOOL(PBUF, MEMP_NUM_PBUF,(MEMP_ALIGN_SIZE(sizeof(struct pbuf))+MEMP_ALIGN_SIZE(0)), "PBUF_REF/ROM") LWIP_MEMPOOL(PBUF_POOL</div></div> <div class="ttc" id="amemp__std_8h_html_a4ed41263feeda39be71d3aa9440494ad"><div class="ttname"><a href="../../d6/d7f/memp__std_8h.html#a4ed41263feeda39be71d3aa9440494ad">LWIP_PBUF_MEMPOOL</a></div><div class="ttdeci">#define LWIP_PBUF_MEMPOOL(name, num, payload, desc)</div><div class="ttdef"><b>Definition:</b> <a href="../../d6/d7f/memp__std_8h_source.html#l00031">memp_std.h:31</a></div></div> <div class="ttc" id="alwipopts_8h_html_aa35fb3a1a76661e3ffb9722a57092de3"><div class="ttname"><a href="../../d2/d78/lwipopts_8h.html#aa35fb3a1a76661e3ffb9722a57092de3">MEMP_NUM_TCP_SEG</a></div><div class="ttdeci">#define MEMP_NUM_TCP_SEG</div><div class="ttdef"><b>Definition:</b> <a href="../../d2/d78/lwipopts_8h_source.html#l00081">lwipopts.h:81</a></div></div> <div class="ttc" id="alwipopts_8h_html_acb40bd726b7e15593b20a628d298f456"><div class="ttname"><a href="../../d2/d78/lwipopts_8h.html#acb40bd726b7e15593b20a628d298f456">MEMP_NUM_NETCONN</a></div><div class="ttdeci">#define MEMP_NUM_NETCONN</div><div class="ttdef"><b>Definition:</b> <a href="../../d2/d78/lwipopts_8h_source.html#l00072">lwipopts.h:72</a></div></div> <div class="ttc" id="alwipopts_8h_html_a4afbdca581a58d57bc7a81118a95327e"><div class="ttname"><a href="../../d2/d78/lwipopts_8h.html#a4afbdca581a58d57bc7a81118a95327e">MEMP_NUM_SYS_TIMEOUT</a></div><div class="ttdeci">#define MEMP_NUM_SYS_TIMEOUT</div><div class="ttdef"><b>Definition:</b> <a href="../../d2/d78/lwipopts_8h_source.html#l00087">lwipopts.h:87</a></div></div> <div class="ttc" id="alwipopts_8h_html_a5a95abf3610c56e7c23cb035eb9c3444"><div class="ttname"><a href="../../d2/d78/lwipopts_8h.html#a5a95abf3610c56e7c23cb035eb9c3444">MEMP_NUM_API_MSG</a></div><div class="ttdeci">#define MEMP_NUM_API_MSG</div><div class="ttdef"><b>Definition:</b> <a href="../../d2/d78/lwipopts_8h_source.html#l00065">lwipopts.h:65</a></div></div> <div class="ttc" id="alwipopts_8h_html_add5a973b98068ce9318ea2f96b5fa14c"><div class="ttname"><a href="../../d2/d78/lwipopts_8h.html#add5a973b98068ce9318ea2f96b5fa14c">MEMP_NUM_NETIFAPI_MSG</a></div><div class="ttdeci">#define MEMP_NUM_NETIFAPI_MSG</div><div class="ttdef"><b>Definition:</b> <a href="../../d2/d78/lwipopts_8h_source.html#l00074">lwipopts.h:74</a></div></div> <div class="ttc" id="alwipopts_8h_html_a73beecc19cfbc3114768f9b32b2cd70e"><div class="ttname"><a href="../../d2/d78/lwipopts_8h.html#a73beecc19cfbc3114768f9b32b2cd70e">MEMP_NUM_TCP_PCB</a></div><div class="ttdeci">#define MEMP_NUM_TCP_PCB</div><div class="ttdef"><b>Definition:</b> <a href="../../d2/d78/lwipopts_8h_source.html#l00079">lwipopts.h:79</a></div></div> <div class="ttc" id="alwipopts_8h_html_a379bf92ed322cda54cb701337421e0d3"><div class="ttname"><a href="../../d2/d78/lwipopts_8h.html#a379bf92ed322cda54cb701337421e0d3">MEMP_NUM_RAW_PCB</a></div><div class="ttdeci">#define MEMP_NUM_RAW_PCB</div><div class="ttdef"><b>Definition:</b> <a href="../../d2/d78/lwipopts_8h_source.html#l00076">lwipopts.h:76</a></div></div> <div class="ttc" id="alwipopts_8h_html_ae61f4491d56e805e79b79eb5d35a00e5"><div class="ttname"><a href="../../d2/d78/lwipopts_8h.html#ae61f4491d56e805e79b79eb5d35a00e5">PBUF_POOL_BUFSIZE</a></div><div class="ttdeci">#define PBUF_POOL_BUFSIZE</div><div class="ttdef"><b>Definition:</b> <a href="../../d2/d78/lwipopts_8h_source.html#l00213">lwipopts.h:213</a></div></div> <div class="ttc" id="amemp__std_8h_html_ac4764284e3c86a71b167c5cb76ef43c2"><div class="ttname"><a href="../../d6/d7f/memp__std_8h.html#ac4764284e3c86a71b167c5cb76ef43c2">PBUF_POOL_SIZE</a></div><div class="ttdeci">PBUF_POOL_SIZE</div><div class="ttdef"><b>Definition:</b> <a href="../../d6/d7f/memp__std_8h_source.html#l00127">memp_std.h:127</a></div></div> <div class="ttc" id="alwipopts_8h_html_acf9782dd26bf8a655044dc041a9de948"><div class="ttname"><a href="../../d2/d78/lwipopts_8h.html#acf9782dd26bf8a655044dc041a9de948">MEMP_NUM_SOCKET_SETGETSOCKOPT_DATA</a></div><div class="ttdeci">#define MEMP_NUM_SOCKET_SETGETSOCKOPT_DATA</div><div class="ttdef"><b>Definition:</b> <a href="../../d2/d78/lwipopts_8h_source.html#l00078">lwipopts.h:78</a></div></div> <div class="ttc" id="alwipopts_8h_html_ab089a7088439e726c3801ba9e249d831"><div class="ttname"><a href="../../d2/d78/lwipopts_8h.html#ab089a7088439e726c3801ba9e249d831">MEMP_NUM_TCPIP_MSG_INPKT</a></div><div class="ttdeci">#define MEMP_NUM_TCPIP_MSG_INPKT</div><div class="ttdef"><b>Definition:</b> <a href="../../d2/d78/lwipopts_8h_source.html#l00083">lwipopts.h:83</a></div></div> <div class="ttc" id="astructtcpip__msg_html"><div class="ttname"><a href="../../d4/de8/structtcpip__msg.html">tcpip_msg</a></div><div class="ttdef"><b>Definition:</b> <a href="../../d6/d89/tcpip__priv_8h_source.html#l00123">tcpip_priv.h:123</a></div></div> <div class="ttc" id="alwipopts_8h_html_a169436c5860253b90e25bdba9fdcac86"><div class="ttname"><a href="../../d2/d78/lwipopts_8h.html#a169436c5860253b90e25bdba9fdcac86">MEMP_NUM_REASSDATA</a></div><div class="ttdeci">#define MEMP_NUM_REASSDATA</div><div class="ttdef"><b>Definition:</b> <a href="../../d2/d78/lwipopts_8h_source.html#l00077">lwipopts.h:77</a></div></div> <div class="ttc" id="alwipopts_8h_html_a293bc22b60bf3f8e2520f60a88370e7a"><div class="ttname"><a href="../../d2/d78/lwipopts_8h.html#a293bc22b60bf3f8e2520f60a88370e7a">MEMP_NUM_NETDB</a></div><div class="ttdeci">#define MEMP_NUM_NETDB</div><div class="ttdef"><b>Definition:</b> <a href="../../d2/d78/lwipopts_8h_source.html#l00073">lwipopts.h:73</a></div></div> <div class="ttc" id="atcpip__priv_8h_html_a1e0cb5032a61055e3f4a3426ed548937a8665d0f2f1498c366e90d67a1e4c7f80"><div class="ttname"><a href="../../d6/d89/tcpip__priv_8h.html#a1e0cb5032a61055e3f4a3426ed548937a8665d0f2f1498c366e90d67a1e4c7f80">TCPIP_MSG_API</a></div><div class="ttdef"><b>Definition:</b> <a href="../../d6/d89/tcpip__priv_8h_source.html#l00112">tcpip_priv.h:112</a></div></div> <div class="ttc" id="alwipopts_8h_html_a3b1f228c598529c62895ad04ff294980"><div class="ttname"><a href="../../d2/d78/lwipopts_8h.html#a3b1f228c598529c62895ad04ff294980">MEMP_NUM_DNS_API_MSG</a></div><div class="ttdeci">#define MEMP_NUM_DNS_API_MSG</div><div class="ttdef"><b>Definition:</b> <a href="../../d2/d78/lwipopts_8h_source.html#l00067">lwipopts.h:67</a></div></div> <div class="ttc" id="alwipopts_8h_html_abfaf3d92d51e2a9d70c8360af2611fb2"><div class="ttname"><a href="../../d2/d78/lwipopts_8h.html#abfaf3d92d51e2a9d70c8360af2611fb2">MEMP_NUM_ND6_QUEUE</a></div><div class="ttdeci">#define MEMP_NUM_ND6_QUEUE</div><div class="ttdef"><b>Definition:</b> <a href="../../d2/d78/lwipopts_8h_source.html#l00380">lwipopts.h:380</a></div></div> <div class="ttc" id="alwipopts_8h_html_a92b30aed958ec59334d936d4ca725418"><div class="ttname"><a href="../../d2/d78/lwipopts_8h.html#a92b30aed958ec59334d936d4ca725418">MEMP_NUM_PBUF</a></div><div class="ttdeci">#define MEMP_NUM_PBUF</div><div class="ttdef"><b>Definition:</b> <a href="../../d2/d78/lwipopts_8h_source.html#l00075">lwipopts.h:75</a></div></div> <div class="ttc" id="alwipopts_8h_html_a5d99df65869ac101ed6a611fc85016be"><div class="ttname"><a href="../../d2/d78/lwipopts_8h.html#a5d99df65869ac101ed6a611fc85016be">MEMP_NUM_NETBUF</a></div><div class="ttdeci">#define MEMP_NUM_NETBUF</div><div class="ttdef"><b>Definition:</b> <a href="../../d2/d78/lwipopts_8h_source.html#l00071">lwipopts.h:71</a></div></div> <div class="ttc" id="alwipopts_8h_html_a1f66051a654dcd7a4e19bc6aff240630"><div class="ttname"><a href="../../d2/d78/lwipopts_8h.html#a1f66051a654dcd7a4e19bc6aff240630">MEMP_NUM_FRAG_PBUF</a></div><div class="ttdeci">#define MEMP_NUM_FRAG_PBUF</div><div class="ttdef"><b>Definition:</b> <a href="../../d2/d78/lwipopts_8h_source.html#l00068">lwipopts.h:68</a></div></div> <!-- start footer part --> <div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> <ul> <li class="navelem"><a class="el" href="../../dir_d44c64559bbebec7f509842c48db8b23.html">include</a></li><li class="navelem"><a class="el" href="../../dir_2fa1ed3146d6c2b96c5cfe4341985326.html">net</a></li><li class="navelem"><a class="el" href="../../dir_227a2a9bb737ed2daffe4b7ac102033f.html">priv</a></li><li class="navelem"><a class="el" href="../../d6/d7f/memp__std_8h.html">memp_std.h</a></li> <li class="footer">Generated by <a href="http://www.doxygen.org/index.html"> <img class="footer" src="../../doxygen.png" alt="doxygen"/></a> 1.8.16 </li> </ul> </div> </body> </html>