Searched refs:ip_frag (Results 1 – 4 of 4) sorted by relevance
/third_party/lwip/test/unit/ip4/ |
D | test_ip4.c | 87 fail_unless(lwip_stats.ip_frag.recv == 1); in START_TEST() 88 fail_unless(lwip_stats.ip_frag.err == 0); in START_TEST() 89 fail_unless(lwip_stats.ip_frag.memerr == 0); in START_TEST() 90 fail_unless(lwip_stats.ip_frag.drop == 0); in START_TEST() 94 fail_unless(lwip_stats.ip_frag.recv == 2); in START_TEST() 95 fail_unless(lwip_stats.ip_frag.err == 0); in START_TEST() 96 fail_unless(lwip_stats.ip_frag.memerr == 0); in START_TEST() 97 fail_unless(lwip_stats.ip_frag.drop == 0); in START_TEST() 101 fail_unless(lwip_stats.ip_frag.recv == 3); in START_TEST() 102 fail_unless(lwip_stats.ip_frag.err == 0); in START_TEST() [all …]
|
/third_party/lwip/src/core/ipv4/ |
D | ip4_frag.c | 295 IPFRAG_STATS_INC(ip_frag.memerr); in ip_reass_enqueue_new_datagram() 514 IPFRAG_STATS_INC(ip_frag.recv); in ip4_reass() 521 IPFRAG_STATS_INC(ip_frag.err); in ip4_reass() 545 IPFRAG_STATS_INC(ip_frag.memerr); in ip4_reass() 561 IPFRAG_STATS_INC(ip_frag.cachehit); in ip4_reass() 689 IPFRAG_STATS_INC(ip_frag.drop); in ip4_reass() 873 IPFRAG_STATS_INC(ip_frag.xmit); in ip4_frag()
|
/third_party/lwip/src/include/lwip/ |
D | stats.h | 243 struct stats_proto ip_frag; member 366 #define IPFRAG_STATS_DISPLAY() stats_display_proto(&lwip_stats.ip_frag, "IP_FRAG")
|
/third_party/lwip/ |
D | CHANGELOG | 1137 * ip_frag.c, ip6_frag.c: fixed bug #41041 Potential use-after-free in IPv6 reassembly 1577 * ip_frag.c: create a new (contiguous) PBUF_RAM for every outgoing 1894 * pbuf.c/.h, ip_frag.c/.h, opt.h, memp_std.h: Fixed bug #29361 (ip_frag has 2298 * ip.c: Fixed bug bug #27345: "ip_frag() does not use the LWIP_NETIF_LOOPBACK 2299 function" by checking for loopback before calling ip_frag 2585 * ip_frag.c: patch #6528: the buffer used for IP_FRAG_USES_STATIC_BUF could be 2628 * ip_frag.c: fixed bug #24517: IP reassembly crashes on unaligned IP headers 2874 * ip_frag.c, memp.c, mib2.c, ip_frag.h, memp_std.h, opt.h: Changed IP_REASSEMBLY 3042 * api_lib.c, ip_frag.c, pbuf.c, api.h, pbuf.h: Introduced pbuf_copy_partial, 3123 * opt.h, ip_frag.c, ip_frag.h, ip.c: Added option IP_FRAG_USES_STATIC_BUF [all …]
|