taglinefilesource code
nth893net/ipv4/tcp_output.cstruct tcphdr *nth;
nth952net/ipv4/tcp_output.cnth = (struct tcphdr *) skb_put(buff,sizeof(*th));
nth954net/ipv4/tcp_output.cmemcpy(nth, th, sizeof(*th));
nth960net/ipv4/tcp_output.cnth->ack = 1; 
nth961net/ipv4/tcp_output.cnth->ack_seq = htonl(sk->acked_seq);
nth962net/ipv4/tcp_output.cnth->window = htons(tcp_select_window(sk));
nth963net/ipv4/tcp_output.cnth->check = 0;
nth979net/ipv4/tcp_output.cnth->urg = 0;
nth985net/ipv4/tcp_output.ctcp_send_check(nth, sk->saddr, sk->daddr, 
nth986net/ipv4/tcp_output.cnth->doff * 4 + win_size , buff);