Lines Matching refs:pcb

70     pcb->state != LISTEN
133 MSS > pcb->snd_wnd (by not creating segments bigger than half the window)
136 * tcp.c: fixed bug #35435: No pcb state check before adding it to time-wait
140 * tcp.c, tcp_in.c: fixed bug #35305: pcb may be freed too early on shutdown(WR)
143 * tcp.c: fixed bug #34636: FIN_WAIT_2 - Incorrect shutdown of TCP pcb
164 * tcp_in.c: fixed bug #34638: Dead code in tcp_receive - pcb->dupacks
209 byte value when pcb->unacked != NULL
215 * tcp_in.c, tcp_out.c: Reset pcb->unsent_oversize in 2 more places...
242 * tcp_out.c: use pcb->mss instead of TCP_MSS for preallocate mss-sized pbufs
246 * udp.c: fixed bug #34072: UDP broadcast is received from wrong UDP pcb if
258 * tcp_in.c: fixed bug #34111 RST for ACK to listening pcb has wrong seqno
355 packets to more than one pcb.
448 * tcp.c/h: patch #6865 (SO_REUSEADDR for TCP): if pcb.so_options has
554 pcbs) by checking if the pcb was bound (local_port != 0).
589 with pcb->state != CLOSED
746 * tcp.c: tcp_listen() did not copy the pcb's prio.
1004 tcp_input_pcb until after calling the pcb's callbacks
1027 reusing time-wait pcb
1049 pcb->recv is NULL to keep rcv_wnd correct)
1301 * tcp_out.c: bug #24212: Deadlocked tcp_retransmit due to exceeded pcb->cwnd
1317 pcb->err is called, not pcb->connected (with an error code).
1410 Accepts_pending is decrease on a corresponding listen pcb when a connection
1569 applications have to call 'tcp_accepted(pcb)' in their accept callback to
1591 * udp.c, raw.c: task #7497: Sort lists (pcb, netif, ...) for faster access
1592 UDP: move a (connected) pcb selected for input to the front of the list of
1721 IP_PCB. Add in the netconn's "pcb" union a "struct ip_pcb *ip;" (no size change).
1722 Use this new field to access to common pcb fields (ttl, tos, so_options, etc...).
2137 tcp_pcb_remove before setting pcb to CLOSED state; don't directly set CLOSED
2155 to netif->dhcp->pcb only (if that exists) and not to any other pcb for the same
2172 * tcp_in.c: Fixed bug #21582: pcb->acked accounting can be wrong when ACKs
2190 * tcp.c, tcp_in.c: Fixed bug #21494: The send mss (pcb->mss) is set to 536 (or
2196 is now based on TCP_MSS instead of pcb->mss (on passive open now effectively
2263 packet on a udp pcb binded on an netif's IP address, and not on "any".
2282 * tcp_out.c: tcp_enqueue: pcb->snd_queuelen didn't work for chaine PBUF_RAMs:
2286 * api_msg.c, tcp.c: Fix bug #20480: Check the pcb passed to tcp_listen() for the
2320 to cache ARP table indices with each pcb instead of single-entry cache for
2350 for udp packets with no matching pcb.
2385 * udp.c: udp_input(): Input pbuf was not freed if pcb had no recv function
2518 missing pcb allocations checking (in do_bind, and for each raw_new). Fix style.
2654 * api_msg.c: Remove some compiler warnings : parameter "pcb" was never
2825 * udp.c: UDP pcb->recv() was called even when it was NULL.
2855 * tcp.c: Increment pcb->snd_buf when ACK is received in SYN_SENT state.
2971 * Raw IP pcb support.