taglinefilesource code
t1649net/inet/tcp.cstruct tcphdr *t1;
t1677net/inet/tcp.ct1 =(struct tcphdr *)(buff + 1);
t1690net/inet/tcp.ct1 =(struct tcphdr *)((char *)t1 +tmp);
t1693net/inet/tcp.cmemcpy(t1, th, sizeof(*t1)); /* this should probably be removed */
t1696net/inet/tcp.ct1->dest = th->source;
t1697net/inet/tcp.ct1->source = th->dest;
t1698net/inet/tcp.ct1->seq = ntohl(sequence);
t1699net/inet/tcp.ct1->ack = 1;
t1701net/inet/tcp.ct1->window = ntohs(sk->window);
t1702net/inet/tcp.ct1->res1 = 0;
t1703net/inet/tcp.ct1->res2 = 0;
t1704net/inet/tcp.ct1->rst = 0;
t1705net/inet/tcp.ct1->urg = 0;
t1706net/inet/tcp.ct1->syn = 0;
t1707net/inet/tcp.ct1->psh = 0;
t1708net/inet/tcp.ct1->fin = 0;
t1719net/inet/tcp.ct1->ack_seq = ntohl(ack);
t1720net/inet/tcp.ct1->doff = sizeof(*t1)/4;
t1721net/inet/tcp.ctcp_send_check(t1, sk->saddr, daddr, sizeof(*t1), sk);
t11164net/inet/tcp.cstruct tcphdr *t1;
t11209net/inet/tcp.ct1 =(struct tcphdr *)((char *)(buff+1) +tmp);
t11215net/inet/tcp.cmemcpy(t1,(void *) &sk->dummy_th, sizeof(*t1));
t11216net/inet/tcp.ct1->seq = ntohl(sk->send_seq);
t11217net/inet/tcp.ct1->ack = 1;
t11218net/inet/tcp.ct1->res1 = 0;
t11219net/inet/tcp.ct1->res2 = 0;
t11220net/inet/tcp.ct1->rst = 0;
t11221net/inet/tcp.ct1->urg = 0;
t11222net/inet/tcp.ct1->syn = 0;
t11223net/inet/tcp.ct1->psh = 0;
t11227net/inet/tcp.ct1->window = ntohs(sk->window);
t11228net/inet/tcp.ct1->ack_seq = ntohl(sk->acked_seq);
t11229net/inet/tcp.ct1->doff = sizeof(*t1)/4;
t11230net/inet/tcp.ctcp_send_check(t1, sk->saddr, sk->daddr, sizeof(*t1), sk);
t11776net/inet/tcp.cstruct tcphdr *t1, *th;
t11813net/inet/tcp.cbuff->len = sizeof(*t1);
t11814net/inet/tcp.ct1 =(struct tcphdr *)(buff + 1);
t11831net/inet/tcp.ct1 =(struct tcphdr *)((char *)t1 +tmp);
t11834net/inet/tcp.cmemcpy(t1, th, sizeof(*t1));
t11835net/inet/tcp.ct1->seq = ntohl(sk->send_seq);
t11838net/inet/tcp.ct1->ack = 1;
t11839net/inet/tcp.ct1->ack_seq = ntohl(sk->acked_seq);
t11840net/inet/tcp.ct1->window = ntohs(sk->prot->rspace(sk));
t11841net/inet/tcp.ct1->fin = 1;
t11842net/inet/tcp.ct1->rst = 0;
t11843net/inet/tcp.ct1->doff = sizeof(*t1)/4;
t11844net/inet/tcp.ctcp_send_check(t1, sk->saddr, sk->daddr, sizeof(*t1), sk);
t11921net/inet/tcp.cstruct tcphdr *t1;
t11935net/inet/tcp.cbuff->len = sizeof(*t1);
t11939net/inet/tcp.ct1 =(struct tcphdr *)(buff + 1);
t11950net/inet/tcp.ct1 =(struct tcphdr *)((char *)t1 +tmp);
t11952net/inet/tcp.cmemcpy(t1, th, sizeof(*t1));
t11955net/inet/tcp.ct1->dest = th->source;
t11956net/inet/tcp.ct1->source = th->dest;
t11957net/inet/tcp.ct1->rst = 1;  
t11958net/inet/tcp.ct1->window = 0;
t11966net/inet/tcp.ct1->ack=0;
t11967net/inet/tcp.ct1->seq=th->ack_seq;
t11968net/inet/tcp.ct1->ack_seq=0;
t11972net/inet/tcp.ct1->ack=1;
t11974net/inet/tcp.ct1->ack_seq=htonl(th->seq);
t11976net/inet/tcp.ct1->ack_seq=htonl(th->seq+1);
t11977net/inet/tcp.ct1->seq=0;
t11980net/inet/tcp.ct1->syn = 0;
t11981net/inet/tcp.ct1->urg = 0;
t11982net/inet/tcp.ct1->fin = 0;
t11983net/inet/tcp.ct1->psh = 0;
t11984net/inet/tcp.ct1->doff = sizeof(*t1)/4;
t11985net/inet/tcp.ctcp_send_check(t1, saddr, daddr, sizeof(*t1), NULL);
t12055net/inet/tcp.cstruct tcphdr *t1;
t12184net/inet/tcp.ct1 =(struct tcphdr *)(buff + 1);
t12208net/inet/tcp.ct1 =(struct tcphdr *)((char *)t1 +tmp);
t12210net/inet/tcp.cmemcpy(t1, skb->h.th, sizeof(*t1));
t12214net/inet/tcp.ct1->dest = skb->h.th->source;
t12215net/inet/tcp.ct1->source = newsk->dummy_th.source;
t12216net/inet/tcp.ct1->seq = ntohl(newsk->send_seq++);
t12217net/inet/tcp.ct1->ack = 1;
t12219net/inet/tcp.ct1->window = ntohs(newsk->window);
t12220net/inet/tcp.ct1->res1 = 0;
t12221net/inet/tcp.ct1->res2 = 0;
t12222net/inet/tcp.ct1->rst = 0;
t12223net/inet/tcp.ct1->urg = 0;
t12224net/inet/tcp.ct1->psh = 0;
t12225net/inet/tcp.ct1->syn = 1;
t12226net/inet/tcp.ct1->ack_seq = ntohl(skb->h.th->seq+1);
t12227net/inet/tcp.ct1->doff = sizeof(*t1)/4+1;
t12229net/inet/tcp.cptr =(unsigned char *)(t1+1);
t12235net/inet/tcp.ctcp_send_check(t1, daddr, saddr, sizeof(*t1)+4, newsk);
t12258net/inet/tcp.cstruct tcphdr *t1, *th;
t12351net/inet/tcp.cbuff->len = sizeof(*t1);
t12352net/inet/tcp.ct1 =(struct tcphdr *)(buff + 1);
t12369net/inet/tcp.ct1 =(struct tcphdr *)((char *)t1 +tmp);
t12372net/inet/tcp.cmemcpy(t1, th, sizeof(*t1));
t12373net/inet/tcp.ct1->seq = ntohl(sk->send_seq);
t12376net/inet/tcp.ct1->ack = 1;
t12380net/inet/tcp.ct1->ack_seq = ntohl(sk->acked_seq);
t12381net/inet/tcp.ct1->window = ntohs(sk->prot->rspace(sk));
t12382net/inet/tcp.ct1->fin = 1;
t12383net/inet/tcp.ct1->rst = need_reset;
t12384net/inet/tcp.ct1->doff = sizeof(*t1)/4;
t12385net/inet/tcp.ctcp_send_check(t1, sk->saddr, sk->daddr, sizeof(*t1), sk);
t13237net/inet/tcp.cstruct tcphdr *t1;
t13287net/inet/tcp.ct1 = (struct tcphdr *)(buff + 1);
t13301net/inet/tcp.ct1 = (struct tcphdr *)((char *)t1 +tmp);
t13303net/inet/tcp.cmemcpy(t1,(void *)&(sk->dummy_th), sizeof(*t1));
t13304net/inet/tcp.ct1->seq = ntohl(sk->send_seq++);
t13306net/inet/tcp.ct1->ack = 0;
t13307net/inet/tcp.ct1->window = 2;
t13308net/inet/tcp.ct1->res1=0;
t13309net/inet/tcp.ct1->res2=0;
t13310net/inet/tcp.ct1->rst = 0;
t13311net/inet/tcp.ct1->urg = 0;
t13312net/inet/tcp.ct1->psh = 0;
t13313net/inet/tcp.ct1->syn = 1;
t13314net/inet/tcp.ct1->urg_ptr = 0;
t13315net/inet/tcp.ct1->doff = 6;
t13318net/inet/tcp.cptr = (unsigned char *)(t1+1);
t13324net/inet/tcp.ctcp_send_check(t1, sk->saddr, sk->daddr,
t13905net/inet/tcp.cstruct tcphdr *t1;
t13926net/inet/tcp.ct1 = (struct tcphdr *)(buff + 1);
t13938net/inet/tcp.ct1 = (struct tcphdr *)((char *)t1 +tmp);
t13940net/inet/tcp.cmemcpy(t1,(void *) &sk->dummy_th, sizeof(*t1));
t13946net/inet/tcp.ct1->seq = ntohl(sk->send_seq-1);
t13947net/inet/tcp.ct1->ack = 1; 
t13948net/inet/tcp.ct1->res1= 0;
t13949net/inet/tcp.ct1->res2= 0;
t13950net/inet/tcp.ct1->rst = 0;
t13951net/inet/tcp.ct1->urg = 0;
t13952net/inet/tcp.ct1->psh = 0;
t13953net/inet/tcp.ct1->fin = 0;
t13954net/inet/tcp.ct1->syn = 0;
t13955net/inet/tcp.ct1->ack_seq = ntohl(sk->acked_seq);
t13956net/inet/tcp.ct1->window = ntohs(sk->prot->rspace(sk));
t13957net/inet/tcp.ct1->doff = sizeof(*t1)/4;
t13958net/inet/tcp.ctcp_send_check(t1, sk->saddr, sk->daddr, sizeof(*t1), sk);