taglinefilesource code
t1789net/inet/tcp.cstruct tcphdr *t1;
t1815net/inet/tcp.ct1 =(struct tcphdr *) buff->data;
t1827net/inet/tcp.ct1 =(struct tcphdr *)((char *)t1 +tmp);
t1830net/inet/tcp.cmemcpy(t1, th, sizeof(*t1)); /* this should probably be removed */
t1836net/inet/tcp.ct1->dest = th->source;
t1837net/inet/tcp.ct1->source = th->dest;
t1838net/inet/tcp.ct1->seq = ntohl(sequence);
t1839net/inet/tcp.ct1->ack = 1;
t1841net/inet/tcp.ct1->window = ntohs(sk->window);
t1842net/inet/tcp.ct1->res1 = 0;
t1843net/inet/tcp.ct1->res2 = 0;
t1844net/inet/tcp.ct1->rst = 0;
t1845net/inet/tcp.ct1->urg = 0;
t1846net/inet/tcp.ct1->syn = 0;
t1847net/inet/tcp.ct1->psh = 0;
t1848net/inet/tcp.ct1->fin = 0;
t1864net/inet/tcp.ct1->ack_seq = ntohl(ack);
t1865net/inet/tcp.ct1->doff = sizeof(*t1)/4;
t1866net/inet/tcp.ctcp_send_check(t1, sk->saddr, daddr, sizeof(*t1), sk);
t11252net/inet/tcp.cstruct tcphdr *t1;
t11295net/inet/tcp.ct1 =(struct tcphdr *)(buff->data +tmp);
t11297net/inet/tcp.cmemcpy(t1,(void *) &sk->dummy_th, sizeof(*t1));
t11298net/inet/tcp.ct1->seq = htonl(sk->sent_seq);
t11299net/inet/tcp.ct1->ack = 1;
t11300net/inet/tcp.ct1->res1 = 0;
t11301net/inet/tcp.ct1->res2 = 0;
t11302net/inet/tcp.ct1->rst = 0;
t11303net/inet/tcp.ct1->urg = 0;
t11304net/inet/tcp.ct1->syn = 0;
t11305net/inet/tcp.ct1->psh = 0;
t11309net/inet/tcp.ct1->window = ntohs(sk->window);
t11310net/inet/tcp.ct1->ack_seq = ntohl(sk->acked_seq);
t11311net/inet/tcp.ct1->doff = sizeof(*t1)/4;
t11312net/inet/tcp.ctcp_send_check(t1, sk->saddr, sk->daddr, sizeof(*t1), sk);
t11644net/inet/tcp.cstruct tcphdr *t1, *th;
t11698net/inet/tcp.cbuff->len = sizeof(*t1);
t11700net/inet/tcp.ct1 =(struct tcphdr *) buff->data;
t11735net/inet/tcp.ct1 =(struct tcphdr *)((char *)t1 +tmp);
t11738net/inet/tcp.cmemcpy(t1, th, sizeof(*t1));
t11739net/inet/tcp.ct1->seq = ntohl(sk->write_seq);
t11742net/inet/tcp.ct1->ack = 1;
t11743net/inet/tcp.ct1->ack_seq = ntohl(sk->acked_seq);
t11744net/inet/tcp.ct1->window = ntohs(sk->window=tcp_select_window(sk));
t11745net/inet/tcp.ct1->fin = 1;
t11746net/inet/tcp.ct1->rst = 0;
t11747net/inet/tcp.ct1->doff = sizeof(*t1)/4;
t11748net/inet/tcp.ctcp_send_check(t1, sk->saddr, sk->daddr, sizeof(*t1), sk);
t11820net/inet/tcp.cstruct tcphdr *t1;
t11833net/inet/tcp.cbuff->len = sizeof(*t1);
t11838net/inet/tcp.ct1 =(struct tcphdr *) buff->data;
t11853net/inet/tcp.ct1 =(struct tcphdr *)((char *)t1 +tmp);
t11855net/inet/tcp.cmemcpy(t1, th, sizeof(*t1));
t11861net/inet/tcp.ct1->dest = th->source;
t11862net/inet/tcp.ct1->source = th->dest;
t11863net/inet/tcp.ct1->rst = 1;  
t11864net/inet/tcp.ct1->window = 0;
t11868net/inet/tcp.ct1->ack = 0;
t11869net/inet/tcp.ct1->seq = th->ack_seq;
t11870net/inet/tcp.ct1->ack_seq = 0;
t11874net/inet/tcp.ct1->ack = 1;
t11876net/inet/tcp.ct1->ack_seq=htonl(th->seq);
t11878net/inet/tcp.ct1->ack_seq=htonl(th->seq+1);
t11879net/inet/tcp.ct1->seq=0;
t11882net/inet/tcp.ct1->syn = 0;
t11883net/inet/tcp.ct1->urg = 0;
t11884net/inet/tcp.ct1->fin = 0;
t11885net/inet/tcp.ct1->psh = 0;
t11886net/inet/tcp.ct1->doff = sizeof(*t1)/4;
t11887net/inet/tcp.ctcp_send_check(t1, saddr, daddr, sizeof(*t1), NULL);
t11974net/inet/tcp.cstruct tcphdr *t1;
t12158net/inet/tcp.ct1 =(struct tcphdr *) buff->data;
t12185net/inet/tcp.ct1 =(struct tcphdr *)((char *)t1 +tmp);
t12187net/inet/tcp.cmemcpy(t1, skb->h.th, sizeof(*t1));
t12192net/inet/tcp.ct1->dest = skb->h.th->source;
t12193net/inet/tcp.ct1->source = newsk->dummy_th.source;
t12194net/inet/tcp.ct1->seq = ntohl(newsk->write_seq++);
t12195net/inet/tcp.ct1->ack = 1;
t12198net/inet/tcp.ct1->window = ntohs(newsk->window);
t12199net/inet/tcp.ct1->res1 = 0;
t12200net/inet/tcp.ct1->res2 = 0;
t12201net/inet/tcp.ct1->rst = 0;
t12202net/inet/tcp.ct1->urg = 0;
t12203net/inet/tcp.ct1->psh = 0;
t12204net/inet/tcp.ct1->syn = 1;
t12205net/inet/tcp.ct1->ack_seq = ntohl(skb->h.th->seq+1);
t12206net/inet/tcp.ct1->doff = sizeof(*t1)/4+1;
t12207net/inet/tcp.cptr =(unsigned char *)(t1+1);
t12213net/inet/tcp.ctcp_send_check(t1, daddr, saddr, sizeof(*t1)+4, newsk);
t12236net/inet/tcp.cstruct tcphdr *t1, *th;
t12347net/inet/tcp.cbuff->len = sizeof(*t1);
t12349net/inet/tcp.ct1 =(struct tcphdr *) buff->data;
t12379net/inet/tcp.ct1 =(struct tcphdr *)((char *)t1 +tmp);
t12382net/inet/tcp.cmemcpy(t1, th, sizeof(*t1));
t12383net/inet/tcp.ct1->seq = ntohl(sk->write_seq);
t12386net/inet/tcp.ct1->ack = 1;
t12393net/inet/tcp.ct1->ack_seq = ntohl(sk->acked_seq);
t12394net/inet/tcp.ct1->window = ntohs(sk->window=tcp_select_window(sk));
t12395net/inet/tcp.ct1->fin = 1;
t12396net/inet/tcp.ct1->rst = 0;
t12397net/inet/tcp.ct1->doff = sizeof(*t1)/4;
t12398net/inet/tcp.ctcp_send_check(t1, sk->saddr, sk->daddr, sizeof(*t1), sk);
t13518net/inet/tcp.cstruct tcphdr *t1;
t13573net/inet/tcp.ct1 = (struct tcphdr *) buff->data;
t13596net/inet/tcp.ct1 = (struct tcphdr *)((char *)t1 +tmp);
t13598net/inet/tcp.cmemcpy(t1,(void *)&(sk->dummy_th), sizeof(*t1));
t13599net/inet/tcp.ct1->seq = ntohl(sk->write_seq++);
t13602net/inet/tcp.ct1->ack = 0;
t13603net/inet/tcp.ct1->window = 2;
t13604net/inet/tcp.ct1->res1=0;
t13605net/inet/tcp.ct1->res2=0;
t13606net/inet/tcp.ct1->rst = 0;
t13607net/inet/tcp.ct1->urg = 0;
t13608net/inet/tcp.ct1->psh = 0;
t13609net/inet/tcp.ct1->syn = 1;
t13610net/inet/tcp.ct1->urg_ptr = 0;
t13611net/inet/tcp.ct1->doff = 6;
t13647net/inet/tcp.cptr = (unsigned char *)(t1+1);
t13652net/inet/tcp.ctcp_send_check(t1, sk->saddr, sk->daddr,
t14268net/inet/tcp.cstruct tcphdr *t1;
t14298net/inet/tcp.ct1 = (struct tcphdr *) buff->data;
t14310net/inet/tcp.ct1 = (struct tcphdr *)((char *)t1 +tmp);
t14312net/inet/tcp.cmemcpy(t1,(void *) &sk->dummy_th, sizeof(*t1));
t14318net/inet/tcp.ct1->seq = htonl(sk->sent_seq-1);
t14319net/inet/tcp.ct1->ack = 1; 
t14320net/inet/tcp.ct1->res1= 0;
t14321net/inet/tcp.ct1->res2= 0;
t14322net/inet/tcp.ct1->rst = 0;
t14323net/inet/tcp.ct1->urg = 0;
t14324net/inet/tcp.ct1->psh = 0;
t14325net/inet/tcp.ct1->fin = 0;
t14326net/inet/tcp.ct1->syn = 0;
t14327net/inet/tcp.ct1->ack_seq = ntohl(sk->acked_seq);
t14328net/inet/tcp.ct1->window = ntohs(tcp_select_window(sk));
t14329net/inet/tcp.ct1->doff = sizeof(*t1)/4;
t14330net/inet/tcp.ctcp_send_check(t1, sk->saddr, sk->daddr, sizeof(*t1), sk);