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

/vbox/src/VBox/Devices/Network/
H A Dlwipopts.h29 #define IP_REASS_MAX_PBUFS 128 macro
/vbox/src/VBox/NetworkServices/NAT/
H A Dlwipopts.h49 #define IP_REASS_MAX_PBUFS 128 macro
/vbox/src/VBox/Devices/Network/lwip-new/src/core/ipv6/
H A Dip6_frag.c66 * full (IP_REASS_MAX_PBUFS pbufs are enqueued). The code gets a little smaller.
207 } while (((ip6_reass_pbufcount + pbufs_needed) > IP_REASS_MAX_PBUFS) && (reassdatagrams != NULL));
353 if ((ip6_reass_pbufcount + clen) > IP_REASS_MAX_PBUFS) {
356 if ((ip6_reass_pbufcount + clen) > IP_REASS_MAX_PBUFS)
/vbox/src/VBox/Devices/Network/lwip-new/src/core/
H A Dinit.c114 #if (IP_REASSEMBLY && (MEMP_NUM_REASSDATA > IP_REASS_MAX_PBUFS))
115 #error "MEMP_NUM_REASSDATA > IP_REASS_MAX_PBUFS doesn't make sense since each struct ip_reassdata must hold 2 pbufs at least!"
/vbox/src/VBox/Devices/Network/lwip-new/src/core/ipv4/
H A Dip_frag.c71 * full (IP_REASS_MAX_PBUFS pbufs are enqueued). The code gets a little smaller.
501 if ((ip_reass_pbufcount + clen) > IP_REASS_MAX_PBUFS) {
504 ((ip_reass_pbufcount + clen) > IP_REASS_MAX_PBUFS))
509 ip_reass_pbufcount, clen, IP_REASS_MAX_PBUFS));
/vbox/src/VBox/Devices/Network/lwip-new/src/include/lwip/
H A Dopt.h563 * IP_REASS_MAX_PBUFS: Total maximum amount of pbufs waiting to be reassembled.
565 * PBUF_POOL_SIZE > IP_REASS_MAX_PBUFS so that the stack is still able to receive
568 #ifndef IP_REASS_MAX_PBUFS
569 #define IP_REASS_MAX_PBUFS 10 macro
/vbox/src/VBox/Devices/Network/lwip-new/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 149 milliseconds