Searched refs:wnd (Results 1 – 5 of 5) sorted by relevance
/lk-master/external/lib/lwip/core/ |
A D | tcp_out.c | 108 tcphdr->wnd = htons(pcb->rcv_ann_wnd); in tcp_output_alloc_header() 901 u32_t wnd, snd_nxt; in tcp_output() local 918 wnd = LWIP_MIN(pcb->snd_wnd, pcb->cwnd); in tcp_output() 930 ntohl(seg->tcphdr->seqno) - pcb->lastack + seg->len > wnd)) { in tcp_output() 951 pcb->snd_wnd, pcb->cwnd, wnd, pcb->lastack)); in tcp_output() 956 pcb->snd_wnd, pcb->cwnd, wnd, in tcp_output() 963 ntohl(seg->tcphdr->seqno) - pcb->lastack + seg->len <= wnd) { in tcp_output() 979 pcb->snd_wnd, pcb->cwnd, wnd, in tcp_output() 1063 seg->tcphdr->wnd = htons(pcb->rcv_ann_wnd); in tcp_output_segment() 1215 tcphdr->wnd = PP_HTONS(TCP_WND); in tcp_rst()
|
A D | tcp_in.c | 160 tcphdr->wnd = ntohs(tcphdr->wnd); in tcp_input() 486 npcb->snd_wnd = tcphdr->wnd; in tcp_listen_input() 487 npcb->snd_wnd_max = tcphdr->wnd; in tcp_listen_input() 638 pcb->snd_wnd = tcphdr->wnd; in tcp_process() 639 pcb->snd_wnd_max = tcphdr->wnd; in tcp_process() 872 (pcb->snd_wl2 == ackno && tcphdr->wnd > pcb->snd_wnd)) { in tcp_receive() 873 pcb->snd_wnd = tcphdr->wnd; in tcp_receive() 876 if (pcb->snd_wnd_max < tcphdr->wnd) { in tcp_receive() 877 pcb->snd_wnd_max = tcphdr->wnd; in tcp_receive() 894 if (pcb->snd_wnd != tcphdr->wnd) { in tcp_receive()
|
A D | tcp.c | 1638 ntohs(tcphdr->wnd))); in tcp_debug_print()
|
/lk-master/external/lib/lwip/netif/ppp/ |
A D | vj.c | 285 if ((deltaS = (u_short)(ntohs(th->wnd) - ntohs(oth->wnd))) != 0) { in vj_compress_tcp() 538 DECODES(th->wnd); in vj_uncompress_tcp()
|
/lk-master/external/lib/lwip/include/lwip/ |
A D | tcp_impl.h | 165 PACK_STRUCT_FIELD(u16_t wnd);
|
Completed in 12 milliseconds