taglinefilesource code
nth896net/ipv4/tcp_output.cstruct tcphdr *nth;
nth955net/ipv4/tcp_output.cnth = (struct tcphdr *) skb_put(buff,sizeof(*th));
nth957net/ipv4/tcp_output.cmemcpy(nth, th, sizeof(*th));
nth963net/ipv4/tcp_output.cnth->ack = 1; 
nth964net/ipv4/tcp_output.cnth->ack_seq = htonl(sk->acked_seq);
nth965net/ipv4/tcp_output.cnth->window = htons(tcp_select_window(sk));
nth966net/ipv4/tcp_output.cnth->check = 0;
nth982net/ipv4/tcp_output.cnth->urg = 0;
nth988net/ipv4/tcp_output.ctcp_send_check(nth, sk->saddr, sk->daddr, 
nth989net/ipv4/tcp_output.cnth->doff * 4 + win_size , buff);