Home
last modified time | relevance | path

Searched refs:ip_frag (Results 1 – 8 of 8) sorted by relevance

/third_party/lwip/test/unit/ip4/
Dtest_ip4.c87 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/rust/crates/bindgen/bindgen-tests/tests/expectations/tests/
Dlayout_array_too_long.rs28 pub struct ip_frag { struct
38 const UNINIT: ::std::mem::MaybeUninit<ip_frag> = in bindgen_test_layout_ip_frag() argument
42 ::std::mem::size_of::<ip_frag>(), in bindgen_test_layout_ip_frag()
44 concat!("Size of: ", stringify!(ip_frag)) in bindgen_test_layout_ip_frag()
47 ::std::mem::align_of::<ip_frag>(), in bindgen_test_layout_ip_frag()
49 concat!("Alignment of ", stringify!(ip_frag)) in bindgen_test_layout_ip_frag()
56 stringify!(ip_frag), in bindgen_test_layout_ip_frag()
66 stringify!(ip_frag), in bindgen_test_layout_ip_frag()
76 stringify!(ip_frag), in bindgen_test_layout_ip_frag()
82 impl Default for ip_frag { implementation
[all …]
Dlayout_large_align_field.rs58 pub struct ip_frag { struct
68 const UNINIT: ::std::mem::MaybeUninit<ip_frag> = in bindgen_test_layout_ip_frag() argument
72 ::std::mem::size_of::<ip_frag>(), in bindgen_test_layout_ip_frag()
74 concat!("Size of: ", stringify!(ip_frag)) in bindgen_test_layout_ip_frag()
77 ::std::mem::align_of::<ip_frag>(), in bindgen_test_layout_ip_frag()
79 concat!("Alignment of ", stringify!(ip_frag)) in bindgen_test_layout_ip_frag()
86 stringify!(ip_frag), in bindgen_test_layout_ip_frag()
96 stringify!(ip_frag), in bindgen_test_layout_ip_frag()
106 stringify!(ip_frag), in bindgen_test_layout_ip_frag()
112 impl Default for ip_frag { implementation
[all …]
/third_party/rust/crates/bindgen/bindgen-tests/tests/headers/
Dlayout_array_too_long.h30 struct ip_frag { struct
60 struct ip_frag frags[IP_MAX_FRAG_NUM]; /**< fragments */
Dlayout_large_align_field.h31 struct ip_frag { struct
71 struct ip_frag frags[IP_MAX_FRAG_NUM]; /**< fragments */
/third_party/lwip/src/core/ipv4/
Dip4_frag.c315 IPFRAG_STATS_INC(ip_frag.memerr); in ip_reass_enqueue_new_datagram()
534 IPFRAG_STATS_INC(ip_frag.recv); in ip4_reass()
541 IPFRAG_STATS_INC(ip_frag.err); in ip4_reass()
565 IPFRAG_STATS_INC(ip_frag.memerr); in ip4_reass()
581 IPFRAG_STATS_INC(ip_frag.cachehit); in ip4_reass()
709 IPFRAG_STATS_INC(ip_frag.drop); in ip4_reass()
893 IPFRAG_STATS_INC(ip_frag.xmit); in ip4_frag()
/third_party/lwip/src/include/lwip/
Dstats.h243 struct stats_proto ip_frag; member
366 #define IPFRAG_STATS_DISPLAY() stats_display_proto(&lwip_stats.ip_frag, "IP_FRAG")
/third_party/lwip/
DCHANGELOG1137 * 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 …]