/third_party/lwip/src/core/ |
H A D | tcp_in.c | 80 static u32_t seqno, ackno; variable 234 ackno = tcphdr->ackno = lwip_ntohl(tcphdr->ackno); 596 tcp_rst(NULL, ackno, seqno + tcplen, ip_current_dest_addr(), 669 tcp_rst((const struct tcp_pcb *)pcb, ackno, seqno + tcplen, ip_current_dest_addr(), 785 tcp_rst(pcb, ackno, seqno + tcplen, ip_current_dest_addr(), 834 if (ackno == pcb->snd_nxt) { 885 LWIP_DEBUGF(TCP_INPUT_DEBUG, ("SYN-SENT: ackno %"U32_F" pcb->snd_nxt %"U32_F" unacked %s %"U32_F"\n", 886 ackno, pc [all...] |
H A D | tcp_out.c | 166 * The TCP header is filled in except ackno and wnd. 212 /* ackno is set in tcp_output */ in tcp_create_segment() 1488 /* The TCP header has already been constructed, but the ackno and in tcp_output_segment() 1490 seg->tcphdr->ackno = lwip_htonl(pcb->rcv_nxt); in tcp_output_segment() 1831 tcp_output_alloc_header_common(u32_t ackno, u16_t optlen, u16_t datalen, in tcp_output_alloc_header_common() argument 1846 tcphdr->ackno = lwip_htonl(ackno); in tcp_output_alloc_header_common() 1986 * @param ackno the acknowledge number to use for the outgoing segment 1993 tcp_rst(const struct tcp_pcb *pcb, u32_t seqno, u32_t ackno, in tcp_rst() argument 2012 p = tcp_output_alloc_header_common(ackno, optle in tcp_rst() [all...] |
H A D | tcp.c | 723 u32_t seqno, ackno; in tcp_abandon() local 747 ackno = pcb->rcv_nxt; in tcp_abandon() 776 tcp_rst(pcb, seqno, ackno, &pcb->local_ip, &pcb->remote_ip, local_port, pcb->remote_port); in tcp_abandon() 2597 lwip_ntohl(tcphdr->ackno)));
|
/third_party/lwip/src/netif/ppp/ |
H A D | vj.c | 320 if ((deltaL = lwip_ntohl(th->ackno) - lwip_ntohl(oth->ackno)) != 0) { in vj_compress_tcp() 550 tmp = lwip_ntohl(th->ackno) + i; in vj_uncompress_tcp() 551 th->ackno = lwip_htonl(tmp); in vj_uncompress_tcp() 574 DECODEL(th->ackno); in vj_uncompress_tcp()
|
/third_party/lwip/test/unit/tcp/ |
H A D | tcp_helper.c | 49 u32_t seqno, u32_t ackno, u8_t headerflags, u16_t wnd) in tcp_create_segment_wnd() 86 tcphdr->ackno = htonl(ackno); in tcp_create_segment_wnd() 114 u32_t seqno, u32_t ackno, u8_t headerflags) in tcp_create_segment() 117 data_len, seqno, ackno, headerflags, TCP_WND); in tcp_create_segment() 121 * - IP-addresses, ports, seqno and ackno are taken from pcb 122 * - seqno and ackno can be altered with an offset 133 * - IP-addresses, ports, seqno and ackno are taken from pcb 134 * - seqno and ackno can be altered with an offset 47 tcp_create_segment_wnd(ip_addr_t* src_ip, ip_addr_t* dst_ip, u16_t src_port, u16_t dst_port, void* data, size_t data_len, u32_t seqno, u32_t ackno, u8_t headerflags, u16_t wnd) tcp_create_segment_wnd() argument 112 tcp_create_segment(ip_addr_t* src_ip, ip_addr_t* dst_ip, u16_t src_port, u16_t dst_port, void* data, size_t data_len, u32_t seqno, u32_t ackno, u8_t headerflags) tcp_create_segment() argument
|
H A D | tcp_helper.h | 40 u32_t seqno, u32_t ackno, u8_t headerflags);
|
/third_party/lwip/src/include/lwip/prot/ |
H A D | tcp.h | 60 PACK_STRUCT_FIELD(u32_t ackno);
|
/third_party/lwip/src/include/lwip/priv/ |
H A D | tcp_priv.h | 467 void tcp_rst(const struct tcp_pcb* pcb, u32_t seqno, u32_t ackno,
|