Lines Matching refs:t1
739 struct tcphdr *t1; in tcp_v6_send_response() local
762 t1 = (struct tcphdr *) skb_push(buff, tot_len); in tcp_v6_send_response()
766 memset(t1, 0, sizeof(*t1)); in tcp_v6_send_response()
767 t1->dest = th->source; in tcp_v6_send_response()
768 t1->source = th->dest; in tcp_v6_send_response()
769 t1->doff = tot_len / 4; in tcp_v6_send_response()
770 t1->seq = htonl(seq); in tcp_v6_send_response()
771 t1->ack_seq = htonl(ack); in tcp_v6_send_response()
772 t1->ack = !rst || !th->ack; in tcp_v6_send_response()
773 t1->rst = rst; in tcp_v6_send_response()
774 t1->window = htons(win); in tcp_v6_send_response()
776 topt = (__be32 *)(t1 + 1); in tcp_v6_send_response()
791 &ipv6_hdr(skb)->daddr, t1); in tcp_v6_send_response()
811 fl6.fl6_dport = t1->dest; in tcp_v6_send_response()
812 fl6.fl6_sport = t1->source; in tcp_v6_send_response()