Lines Matching refs:udp
48 * opt.h, tcp_impl.h, tcp.c, udp.h/.c: Added a config option to randomize
246 * udp.c: fixed bug #34072: UDP broadcast is received from wrong UDP pcb if
247 udp port matches
327 * ip.c, udp.c/.h, pbuf.h, sockets.c: task #10495: Added support for
353 * tcp.c, udp.c: task #6995: Implement SO_REUSEADDR (correctly), added
362 * udp.h/.c, pbuf.h/.c: task #6849: added udp_send(_to/_if) functions that
546 * tcp.c, udp.c: Fixed bug #33048 (Bad range for IP source port numbers) by
560 * sockets.c: Fixed bug #32906: lwip_connect+lwip_send did not work for udp and
655 * udp.c, raw.c: Don't chain empty pbufs when sending them (fixes bug #30625)
1289 * raw.c, udp.c, init.c, opt.h, ip.h, sockets.h: bug #26309: Implement the
1421 * sockets.c: fixed bug #25051: lwip_recvfrom problem with udp: fromaddr and
1591 * udp.c, raw.c: task #7497: Sort lists (pcb, netif, ...) for faster access
1645 core header files in api.h (ip/tcp/udp/raw.h) to hide the internal
1694 * udp.h, udp.c, sockets.c: Changes for "#20503 IGMP Improvement". Add IP_MULTICAST_IF
1726 * udp.c, ipv4/icmp.c, ipv4/ip.c, ipv6/icmp.c, ipv6/ip6.c, ipv4/icmp.h,
1903 * udp.h, opt.h, api_msg.c, ip.c, udp.c: Included switch LWIP_UDPLITE (enabled
1904 by default) to switch off UDP-Lite support if not needed (reduces udp.c code
2153 * udp.c: first attempt to fix bug #21655 (DHCP doesn't work reliably with multiple
2168 * udp.h, udp.c, dhcp.c: Implemented new function udp_sendto_if which takes the
2205 * udp.c, inet.c, inet.h: Fixed UDPLite: send: Checksum was always generated too
2262 * udp.c: Fix for bug #20503 : IGMP Improvement. Enable to receive a multicast
2263 packet on a udp pcb binded on an netif's IP address, and not on "any".
2319 tcp_out.c, udp.c, etharp.c: Added option LWIP_NETIF_HWADDRHINT (default=off)
2346 * udp.h: Fixed bug #20259: struct udp_hdr was lacking the packin defines.
2349 * udp.c: Fixed bug #20253: icmp_dest_unreach was called with a wrong p->payload
2350 for udp packets with no matching pcb.
2353 * udp.c: Fixed bug #20220: UDP PCB search in udp_input(): a non-local match
2354 could get udp input packets if the remote side matched.
2375 * udp.c: UDP Lite: corrected the use of chksum_len (based on RFC3828: if it's 0,
2385 * udp.c: udp_input(): Input pbuf was not freed if pcb had no recv function
2439 * api_msg.c, udp.c: If a udp_pcb has a local_ip set, check if it is the same
2596 * udp.c: Only try and use pbuf_header() to make space for headers if
2672 * udp.c: remove obsolete line "static struct udp_pcb *pcb_cache = NULL;"
2673 It is static, and never used in udp.c except udp_init().
2755 * udp.c: Fixed bug #17200, added check for broadcast
2808 * udp.c tcp.c: Removed SO_REUSE hack. Should reside in socket code only.
2825 * udp.c: UDP pcb->recv() was called even when it was NULL.