Lines Matching refs:pbuf
63 * ip4.c, etharp.c, pbuf.h: bug #33634 ip_forward() have a faulty behaviour:
64 Added pbuf flags to mark incoming packets as link-layer broadcast/multicast.
117 * ppp.c: fixed pbuf leak when PPP session is aborted through pppSigHUP()
149 * pbuf.c: fixed bug #35291: NULL pointer in pbuf_copy
205 * pbuf.c: fixed bug #34534: Error in sending fragmented IP if MEM_ALIGNMENT > 4
221 * dhcp.c: fixed bug #34406 dhcp_option_hostname() can overflow the pbuf
227 * pbuf.h, tcp.c, tcp_in.c: fixed bug #33871: rejecting TCP_EVENT_RECV() for
268 * pbuf.c: fixed bug #34112 Odd check in pbuf_alloced_custom (typo)
286 * pbuf.c/.h, timers.c: freeing ooseq pbufs when the pbuf pool is empty implemented
327 * ip.c, udp.c/.h, pbuf.h, sockets.c: task #10495: Added support for
362 * udp.h/.c, pbuf.h/.c: task #6849: added udp_send(_to/_if) functions that
364 into a pbuf and at the same time calculating the checksum for that data
557 * ppp.c: Fixed bug #32280 (ppp: a pbuf is freed twice)
695 * pbuf.c/.h, ip_frag.c/.h, opt.h, memp_std.h: Fixed bug #29361 (ip_frag has
790 * mem.c/.h, pbuf.c: Renamed mem_realloc() to mem_trim() to prevent
1011 * pbuf.c: Fixed bug #28064: pbuf_alloc(PBUF_POOL) is not thread-safe by
1065 * dhcp.c/.h: Minor code simplification (don't store received pbuf, change
1066 conditional code to assert where applicable), check pbuf length before
1131 * opt.h, sockets.c, pbuf.c, netbuf.h, pbuf.h: task #7013: Added option
1133 one pbuf to help MACs that don't support scatter-gather DMA.
1137 ECHO pbuf for size (just use it): LWIP_ICMP_ECHO_CHECK_INPUT_PBUF_LEN
1324 * tcp_out.c: Fixed bug #25094: "Zero-length pbuf" (options are now allocated
1325 in the header pbuf, not the data pbuf)
1349 * netbuf.c: bug #26027: netbuf_chain resulted in pbuf memory leak
1402 * dhcp.c: fixed bug #24480 (releasing old udp_pdb and pbuf in dhcp_start)
1406 RECV_BUFSIZE_DEFAULT (fixes bug #23726: pbuf pool exhaustion on slow recv())
1414 * pbuf.c: reclaim pbufs from TCP out-of-sequence segments if we run
1828 * pbuf.c, pbuf.h, etharp.c, tcp_in.c, sockets.c: Split pbuf flags in pbuf
1843 * api_lib.c, ip_frag.c, pbuf.c, api.h, pbuf.h: Introduced pbuf_copy_partial,
1945 * opt.h, memp.h, memp.c, pbuf.c (see task #6831): use a new memp pool for
1946 PBUF_POOL pbufs instead of the old pool implementation in pbuf.c to reduce
2100 * pbuf.c, ppp.c: Fix warnings on some systems with mem_malloc.
2279 copy_from_pbuf, which illegally modified the given pbuf.
2307 assumption is made that this pbuf is in one piece (i.e. not chained). These
2309 pbuf implementations, where PBUF_RAM pbufs might be chained.
2370 * opt.h, mem.h, mem.c, memp.c, pbuf.c, ip_frag.c, vj.c: Fix bug #20162. Rename
2385 * udp.c: udp_input(): Input pbuf was not freed if pcb had no recv function
2391 re-used the input pbuf even if that didn't have enough space to include the
2392 link headers. Now the space is tested and a new pbuf is allocated for the
2393 echo response packet if the echo request pbuf isn't big enough.
2406 an error code if it's impossible to fetch a pbuf on a TCP connection (and not
2435 * loopif.c, slipif.c: Fix bug #19729: free pbuf if netif->input() returns
2463 * pbuf.c, pbuf.h, etharp.c: Further update to ARP queueing: Changed pbuf_copy()
2465 pbuf inside pbuf_copy()).
2485 * pbuf.c: Use s32_t in pbuf_realloc(), as an s16_t can't reliably hold
2498 * etharp.c, pbuf.c, pbuf.h: 3rd fix for bug #11400 (arp-queuing): More pbufs than
2500 pbuf.c: removed functions no needed any more (by etharp).
2597 not a ROM or REF pbuf.
2607 * pbuf.c: checked in patch #5796: pbuf_alloc: len field claculation caused
2663 * pbuf.c: Fix BUG#19168 - pbuf_free can cause deadlock (if
2669 existing pbuf chain when enqueuing multiple pbufs to a pending ARP request
2685 * pbuf.c: Fix BUG#17645 - ensure pbuf payload pointer is not moved
2686 outside the region of the pbuf by pbuf_header()
2788 * pbuf.c: Fix alignment; pbuf_init() would not work unless
2815 * slipif.c: Fixed implementation assumption of single-pbuf datagrams.
2822 * pbuf.c: Fixed missing semicolon after LWIP_DEBUG statement.
2869 * etharp.c: Make sure the first pbuf queued on an ARP entry
2875 * pbuf.c: Stopped compiler complaining of empty if statement
2886 * ip_frag.c, tcp_out.c, sockets.c, pbuf.c
2990 * Fixed pool pbuf memory leak in pbuf_alloc().
2991 Occured if not enough PBUF_POOL pbufs for a packet pbuf chain.
3013 * TCP has been fixed to deal with the new use of the pbuf->ref
3021 pbuf_refresh(). This has sped up pbuf pool operations considerably.
3033 Use PBUF_REF to make a pbuf refer to RAM. lwIP will use zero-copy
3052 * The packet buffer implementation is changed. The pbuf->ref counter
3053 meaning has changed, and several pbuf functions have been
3285 RAM never returned the RAM when the pbuf was deallocated.
3309 * Some bugfixes and improvements to the buffer (pbuf) subsystem.