IP_REASS_MAX_PBUFS is only used within LwIP.
 
Symbols
loading...
Files
loading...

IP_REASS_MAX_PBUFS macro

IP_REASS_MAX_PBUFS: Total maximum amount of pbufs waiting to be reassembled. Since the received pbufs are enqueued, be sure to configure PBUF_POOL_SIZE > IP_REASS_MAX_PBUFS so that the stack is still able to receive packets even if the maximum amount of fragments is enqueued for reassembly! When IPv4 *and* IPv6 are enabled, this even changes to (PBUF_POOL_SIZE > 2 * IP_REASS_MAX_PBUFS)!

Syntax

#define IP_REASS_MAX_PBUFS 10

References

LocationText
opt.h:794
#define IP_REASS_MAX_PBUFS 10
init.c:132
#if (IP_REASSEMBLY && (MEMP_NUM_REASSDATA > IP_REASS_MAX_PBUFS))
ip4_frag.c:536
if ((ip_reass_pbufcount + clen) > IP_REASS_MAX_PBUFS) {
ip4_frag.c:539
((ip_reass_pbufcount + clen) > IP_REASS_MAX_PBUFS))