Searched refs:seqno (Results 1 – 9 of 9) sorted by relevance
/lk-master/external/lib/lwip/core/ |
A D | tcp_in.c | 158 seqno = tcphdr->seqno = ntohl(tcphdr->seqno); in tcp_input() 824 TCP_SEQ_GT(seqno + cseg->len, next->tcphdr->seqno)) { in tcp_oos_insert_segment() 826 cseg->len = (u16_t)(next->tcphdr->seqno - seqno); in tcp_oos_insert_segment() 1199 inseg.tcphdr->seqno = seqno = pcb->rcv_nxt; in tcp_receive() 1281 inseg.len = (u16_t)(next->tcphdr->seqno - seqno); in tcp_receive() 1288 (seqno + tcplen) == next->tcphdr->seqno); in tcp_receive() 1331 seqno = pcb->ooseq->tcphdr->seqno; in tcp_receive() 1389 if (seqno == next->tcphdr->seqno) { in tcp_receive() 1416 if (TCP_SEQ_LT(seqno, next->tcphdr->seqno)) { in tcp_receive() 1431 if (TCP_SEQ_BETWEEN(seqno, prev->tcphdr->seqno+1, next->tcphdr->seqno-1)) { in tcp_receive() [all …]
|
A D | tcp_out.c | 105 tcphdr->seqno = seqno_be; in tcp_output_alloc_header() 194 seg->tcphdr->seqno = htonl(seqno); in tcp_create_segment() 610 ntohl(seg->tcphdr->seqno), in tcp_write() 783 ntohl(seg->tcphdr->seqno), in tcp_enqueue_flags() 1010 if (TCP_SEQ_LT(ntohl(seg->tcphdr->seqno), ntohl(useg->tcphdr->seqno))) { in tcp_output() 1014 TCP_SEQ_LT(ntohl((*cur_seg)->tcphdr->seqno), ntohl(seg->tcphdr->seqno))) { in tcp_output() 1107 pcb->rtseq = ntohl(seg->tcphdr->seqno); in tcp_output_segment() 1112 htonl(seg->tcphdr->seqno), htonl(seg->tcphdr->seqno) + in tcp_output_segment() 1195 tcp_rst(u32_t seqno, u32_t ackno, in tcp_rst() argument 1212 tcphdr->seqno = htonl(seqno); in tcp_rst() [all …]
|
A D | dns.c | 173 u8_t seqno; member 877 if ((dns_seqno - pEntry->seqno) > lseq) { in dns_enqueue() 878 lseq = dns_seqno - pEntry->seqno; in dns_enqueue() 902 pEntry->seqno = dns_seqno++; in dns_enqueue()
|
A D | tcp.c | 359 u32_t seqno, ackno; in tcp_abandon() local 375 seqno = pcb->snd_nxt; in tcp_abandon() 395 tcp_rst(seqno, ackno, &pcb->local_ip, &pcb->remote_ip, pcb->local_port, pcb->remote_port); in tcp_abandon() 1625 ntohl(tcphdr->seqno))); in tcp_debug_print()
|
/lk-master/external/lib/lwip/netif/ppp/ |
A D | vj.c | 299 if ((deltaL = ntohl(th->seqno) - ntohl(oth->seqno)) != 0) { in vj_compress_tcp() 519 tmp = ntohl(th->seqno) + i; in vj_uncompress_tcp() 520 th->seqno = htonl(tmp); in vj_uncompress_tcp() 526 tmp = ntohl(th->seqno) + ntohs(IPH_LEN(&cs->cs_ip)) - cs->cs_hlen; in vj_uncompress_tcp() 527 th->seqno = htonl(tmp); in vj_uncompress_tcp() 544 DECODEL(th->seqno); in vj_uncompress_tcp()
|
/lk-master/external/lib/lwip/include/ipv6/lwip/ |
A D | icmp.h | 76 u16_t seqno; member
|
/lk-master/external/lib/lwip/include/ipv4/lwip/ |
A D | icmp.h | 84 PACK_STRUCT_FIELD(u16_t seqno);
|
/lk-master/external/lib/lwip/include/lwip/ |
A D | tcp_impl.h | 162 PACK_STRUCT_FIELD(u32_t seqno); 444 void tcp_rst(u32_t seqno, u32_t ackno,
|
/lk-master/external/lib/lwip/core/ipv4/ |
A D | icmp.c | 320 icmphdr->seqno = 0; in icmp_send_response()
|
Completed in 16 milliseconds