taglinefilesource code
nth5219net/ipv4/tcp.cstruct tcphdr *nth;
nth5279net/ipv4/tcp.cnth = (struct tcphdr *) skb_put(buff,th->doff*4);
nth5281net/ipv4/tcp.cmemcpy(nth, th, th->doff * 4);
nth5287net/ipv4/tcp.cnth->ack = 1; 
nth5288net/ipv4/tcp.cnth->ack_seq = ntohl(sk->acked_seq);
nth5289net/ipv4/tcp.cnth->window = ntohs(tcp_select_window(sk));
nth5290net/ipv4/tcp.cnth->check = 0;
nth5335net/ipv4/tcp.cnth->urg_ptr = htons(win_size);
nth5340net/ipv4/tcp.cnth->urg = 0;
nth5347net/ipv4/tcp.ctcp_send_check(nth, sk->saddr, sk->daddr, 
nth5348net/ipv4/tcp.cnth->doff * 4 + win_size , sk);