Lines Matching refs:t1
742 struct tcphdr *t1; in tcp_v6_send_response() local
765 t1 = (struct tcphdr *) skb_push(buff, tot_len); in tcp_v6_send_response()
769 memset(t1, 0, sizeof(*t1)); in tcp_v6_send_response()
770 t1->dest = th->source; in tcp_v6_send_response()
771 t1->source = th->dest; in tcp_v6_send_response()
772 t1->doff = tot_len / 4; in tcp_v6_send_response()
773 t1->seq = htonl(seq); in tcp_v6_send_response()
774 t1->ack_seq = htonl(ack); in tcp_v6_send_response()
775 t1->ack = !rst || !th->ack; in tcp_v6_send_response()
776 t1->rst = rst; in tcp_v6_send_response()
777 t1->window = htons(win); in tcp_v6_send_response()
779 topt = (__be32 *)(t1 + 1); in tcp_v6_send_response()
794 &ipv6_hdr(skb)->daddr, t1); in tcp_v6_send_response()
814 fl6.fl6_dport = t1->dest; in tcp_v6_send_response()
815 fl6.fl6_sport = t1->source; in tcp_v6_send_response()