Searched defs:ack_seq (Results 1 - 3 of 3) sorted by relevance

/net/netfilter/ipvs/
H A Dip_vs_app.c317 * Fixes th->ack_seq based on ip_vs_seq info.
322 __u32 ack_seq = ntohl(th->ack_seq); local
325 * Adjust ack_seq with delta-offset for
330 /* since ack_seq is the number of octet that is expected
332 if(after(ack_seq, vseq->init_seq+vseq->delta)) {
333 th->ack_seq = htonl(ack_seq - vseq->delta);
335 "(%d) from ack_seq\n", __func__, vseq->delta);
338 th->ack_seq
[all...]
/net/ipv6/
H A Dtcp_ipv6.c759 t1->ack_seq = htonl(ack);
820 u32 seq = 0, ack_seq = 0; local
867 seq = ntohl(th->ack_seq);
869 ack_seq = ntohl(th->seq) + th->syn + th->fin + skb->len -
872 tcp_v6_send_response(skb, seq, ack_seq, 0, 0, 0, key, 1, 0);
1480 TCP_SKB_CB(skb)->ack_seq = ntohl(th->ack_seq);
/net/ipv4/
H A Dtcp_input.c984 u32 ack_seq = TCP_SKB_CB(skb)->ack_seq; local
998 * least tp->reordering SACK blocks reside between ack_seq
1007 if (after(received_upto, ack_seq)) {
1014 if (before(ack_seq, new_low_seq))
1015 new_low_seq = ack_seq;
1033 if (before(start_seq_0, TCP_SKB_CB(ack_skb)->ack_seq)) {
1587 if (before(TCP_SKB_CB(ack_skb)->ack_seq, prior_snd_una - tp->max_window))
1613 if ((TCP_SKB_CB(ack_skb)->ack_seq != tp->snd_una) &&
3206 const u32 ack, const u32 ack_seq,
3205 tcp_may_update_window(const struct tcp_sock *tp, const u32 ack, const u32 ack_seq, const u32 nwin) argument
3219 tcp_ack_update_window(struct sock *sk, const struct sk_buff *skb, u32 ack, u32 ack_seq) argument
3331 u32 ack_seq = TCP_SKB_CB(skb)->seq; local
[all...]

Completed in 81 milliseconds