Searched refs:IP_REASS_MAX_PBUFS (Results 1 - 5 of 5) sorted by relevance

/external/syslinux/core/lwip/src/include/
H A Dlwipopts.h38 #define IP_REASS_MAX_PBUFS 64 macro
/external/syslinux/core/lwip/src/core/
H A Dinit.c154 #if (IP_REASSEMBLY && (MEMP_NUM_REASSDATA > IP_REASS_MAX_PBUFS))
155 #error "MEMP_NUM_REASSDATA > IP_REASS_MAX_PBUFS doesn't make sense since each struct ip_reassdata must hold 2 pbufs at least!"
/external/syslinux/core/lwip/src/include/lwip/
H A Dopt.h544 * IP_REASS_MAX_PBUFS: Total maximum amount of pbufs waiting to be reassembled.
546 * PBUF_POOL_SIZE > IP_REASS_MAX_PBUFS so that the stack is still able to receive
549 #ifndef IP_REASS_MAX_PBUFS
550 #define IP_REASS_MAX_PBUFS 10 macro
/external/syslinux/core/lwip/src/core/ipv4/
H A Dip_frag.c71 * full (IP_REASS_MAX_PBUFS pbufs are enqueued). The code gets a little smaller.
502 if ((ip_reass_pbufcount + clen) > IP_REASS_MAX_PBUFS) {
505 ((ip_reass_pbufcount + clen) > IP_REASS_MAX_PBUFS))
510 ip_reass_pbufcount, clen, IP_REASS_MAX_PBUFS));
/external/syslinux/core/lwip/src/core/snmp/
H A Dmib2.c3123 /* @todo The theoretical maximum is IP_REASS_MAX_PBUFS * size of the pbufs,
3127 *sint_ptr = (IP_HLEN + ((IP_REASS_MAX_PBUFS/2) *

Completed in 313 milliseconds