Searched refs:seqno (Results 1 - 15 of 15) sorted by relevance

/seL4-camkes-master/projects/lwip/src/core/
H A Dtcp_in.c80 static u32_t seqno, ackno; variable
230 seqno = tcphdr->seqno = lwip_ntohl(tcphdr->seqno);
537 for the FIN's seqno */
579 tcp_rst(NULL, ackno, seqno + tcplen, ip_current_dest_addr(),
649 tcp_rst((const struct tcp_pcb *)pcb, ackno, seqno + tcplen, ip_current_dest_addr(),
681 npcb->rcv_nxt = seqno + 1;
688 npcb->snd_wl1 = seqno - 1;/* initialise to seqno
[all...]
H A Dtcp_out.c151 * @param seqno TCP sequence number of this packet
158 tcp_create_segment(const struct tcp_pcb *pcb, struct pbuf *p, u8_t hdrflags, u32_t seqno, u8_t optflags) argument
199 seg->tcphdr->seqno = lwip_htonl(seqno);
690 lwip_ntohl(seg->tcphdr->seqno),
691 lwip_ntohl(seg->tcphdr->seqno) + TCP_TCPLEN(seg)));
914 seg = tcp_create_segment(pcb, p, remainder_flags, lwip_ntohl(useg->tcphdr->seqno) + split, optflags);
1095 lwip_ntohl(seg->tcphdr->seqno),
1096 lwip_ntohl(seg->tcphdr->seqno) + TCP_TCPLEN(seg),
1286 lwip_ntohl(seg->tcphdr->seqno)
1980 tcp_rst(const struct tcp_pcb *pcb, u32_t seqno, u32_t ackno, const ip_addr_t *local_ip, const ip_addr_t *remote_ip, u16_t local_port, u16_t remote_port) argument
[all...]
H A Ddns.c228 u8_t seqno; member in struct:dns_table_entry
1425 u8_t age = (u8_t)(dns_seqno - entry->seqno);
1471 entry->seqno = dns_seqno;
H A Dtcp.c565 u32_t seqno, ackno; local
588 seqno = pcb->snd_nxt;
618 tcp_rst(pcb, seqno, ackno, &pcb->local_ip, &pcb->remote_ip, local_port, pcb->remote_port);
1573 for the FIN's seqno */
2413 lwip_ntohl(tcphdr->seqno)));
/seL4-camkes-master/projects/lwip/src/include/lwip/prot/
H A Dicmp.h74 PACK_STRUCT_FIELD(u16_t seqno);
H A Dicmp6.h159 PACK_STRUCT_FIELD(u16_t seqno);
H A Dtcp.h59 PACK_STRUCT_FIELD(u32_t seqno);
/seL4-camkes-master/projects/lwip/test/unit/tcp/
H A Dtcp_helper.h40 u32_t seqno, u32_t ackno, u8_t headerflags);
H A Dtcp_helper.c49 u32_t seqno, u32_t ackno, u8_t headerflags, u16_t wnd)
85 tcphdr->seqno = htonl(seqno);
114 u32_t seqno, u32_t ackno, u8_t headerflags)
117 data_len, seqno, ackno, headerflags, TCP_WND);
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) 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) argument
H A Dtest_tcp_oos.c15 * 1: check count, seqno and len of segments on pcb->ooseq (strict)
53 /** Get the seqno of a segment (by index) on the ooseq list
57 * @return seqno of the segment
68 return seg->tcphdr->seqno;
185 /* seqno: 8..16 */
188 /* seqno: 4..11 */
191 /* seqno: 4..13 */
194 /* seqno: 2..15 */
196 /* FIN, seqno 16 */
319 /* seqno
[all...]
H A Dtest_tcp.c231 /* create a segment (with an overlapping/old seqno so that the new data begins in the 2nd pbuf) */
619 EXPECT(s->tcphdr->seqno == htonl(seqnos_expected[i]));
/seL4-camkes-master/projects/lwip/src/netif/
H A Dzepif.c91 u32_t seqno; member in struct:zepif_state
200 zep->seq_num = lwip_htonl(state->seqno);
201 state->seqno++;
/seL4-camkes-master/projects/lwip/src/netif/ppp/
H A Dvj.c329 if ((deltaL = lwip_ntohl(th->seqno) - lwip_ntohl(oth->seqno)) != 0) {
552 tmp = lwip_ntohl(th->seqno) + i;
553 th->seqno = lwip_htonl(tmp);
559 tmp = lwip_ntohl(th->seqno) + lwip_ntohs(IPH_LEN(&cs->cs_ip)) - cs->cs_hlen;
560 th->seqno = lwip_htonl(tmp);
577 DECODEL(th->seqno);
/seL4-camkes-master/projects/lwip/src/core/ipv4/
H A Dicmp.c374 icmphdr->seqno = 0;
/seL4-camkes-master/projects/lwip/src/include/lwip/priv/
H A Dtcp_priv.h467 void tcp_rst(const struct tcp_pcb* pcb, u32_t seqno, u32_t ackno,

Completed in 68 milliseconds