taglinefilesource code
nth918net/ipv4/tcp_output.cstruct tcphdr *nth;
nth977net/ipv4/tcp_output.cnth = (struct tcphdr *) skb_put(buff,sizeof(*th));
nth979net/ipv4/tcp_output.cmemcpy(nth, th, sizeof(*th));
nth985net/ipv4/tcp_output.cnth->ack = 1; 
nth986net/ipv4/tcp_output.cnth->ack_seq = htonl(sk->acked_seq);
nth987net/ipv4/tcp_output.cnth->window = htons(tcp_select_window(sk));
nth988net/ipv4/tcp_output.cnth->check = 0;
nth1004net/ipv4/tcp_output.cnth->urg = 0;
nth1010net/ipv4/tcp_output.ctcp_send_check(nth, sk->saddr, sk->daddr, 
nth1011net/ipv4/tcp_output.cnth->doff * 4 + win_size , buff);