taglinefilesource code
t1596net/inet/tcp.cstruct tcphdr *t1;
t1621net/inet/tcp.ct1 =(struct tcphdr *)(buff + 1);
t1633net/inet/tcp.ct1 =(struct tcphdr *)((char *)t1 +tmp);
t1636net/inet/tcp.cmemcpy(t1, th, sizeof(*t1)); /* this should probably be removed */
t1639net/inet/tcp.ct1->dest = th->source;
t1640net/inet/tcp.ct1->source = th->dest;
t1641net/inet/tcp.ct1->seq = ntohl(sequence);
t1642net/inet/tcp.ct1->ack = 1;
t1644net/inet/tcp.ct1->window = ntohs(sk->window);
t1645net/inet/tcp.ct1->res1 = 0;
t1646net/inet/tcp.ct1->res2 = 0;
t1647net/inet/tcp.ct1->rst = 0;
t1648net/inet/tcp.ct1->urg = 0;
t1649net/inet/tcp.ct1->syn = 0;
t1650net/inet/tcp.ct1->psh = 0;
t1651net/inet/tcp.ct1->fin = 0;
t1660net/inet/tcp.ct1->ack_seq = ntohl(ack);
t1661net/inet/tcp.ct1->doff = sizeof(*t1)/4;
t1662net/inet/tcp.ctcp_send_check(t1, sk->saddr, daddr, sizeof(*t1), sk);
t1981net/inet/tcp.cstruct tcphdr *t1;
t11019net/inet/tcp.ct1 =(struct tcphdr *)((char *)(buff+1) +tmp);
t11021net/inet/tcp.cmemcpy(t1,(void *) &sk->dummy_th, sizeof(*t1));
t11022net/inet/tcp.ct1->seq = ntohl(sk->send_seq);
t11023net/inet/tcp.ct1->ack = 1;
t11024net/inet/tcp.ct1->res1 = 0;
t11025net/inet/tcp.ct1->res2 = 0;
t11026net/inet/tcp.ct1->rst = 0;
t11027net/inet/tcp.ct1->urg = 0;
t11028net/inet/tcp.ct1->syn = 0;
t11029net/inet/tcp.ct1->psh = 0;
t11033net/inet/tcp.ct1->window = ntohs(sk->window);
t11034net/inet/tcp.ct1->ack_seq = ntohl(sk->acked_seq);
t11035net/inet/tcp.ct1->doff = sizeof(*t1)/4;
t11036net/inet/tcp.ctcp_send_check(t1, sk->saddr, sk->daddr, sizeof(*t1), sk);
t11450net/inet/tcp.cstruct tcphdr *t1, *th;
t11481net/inet/tcp.cbuff->len = sizeof(*t1);
t11482net/inet/tcp.ct1 =(struct tcphdr *)(buff + 1);
t11496net/inet/tcp.ct1 =(struct tcphdr *)((char *)t1 +tmp);
t11499net/inet/tcp.cmemcpy(t1, th, sizeof(*t1));
t11500net/inet/tcp.ct1->seq = ntohl(sk->send_seq);
t11503net/inet/tcp.ct1->ack = 1;
t11504net/inet/tcp.ct1->ack_seq = ntohl(sk->acked_seq);
t11505net/inet/tcp.ct1->window = ntohs(sk->prot->rspace(sk));
t11506net/inet/tcp.ct1->fin = 1;
t11507net/inet/tcp.ct1->rst = 0;
t11508net/inet/tcp.ct1->doff = sizeof(*t1)/4;
t11509net/inet/tcp.ctcp_send_check(t1, sk->saddr, sk->daddr, sizeof(*t1), sk);
t11575net/inet/tcp.cstruct tcphdr *t1;
t11589net/inet/tcp.cbuff->len = sizeof(*t1);
t11593net/inet/tcp.ct1 =(struct tcphdr *)(buff + 1);
t11603net/inet/tcp.ct1 =(struct tcphdr *)((char *)t1 +tmp);
t11605net/inet/tcp.cmemcpy(t1, th, sizeof(*t1));
t11608net/inet/tcp.ct1->dest = th->source;
t11609net/inet/tcp.ct1->source = th->dest;
t11610net/inet/tcp.ct1->rst = 1;  
t11611net/inet/tcp.ct1->window = 0;
t11615net/inet/tcp.ct1->ack=0;
t11616net/inet/tcp.ct1->seq=th->ack_seq;
t11617net/inet/tcp.ct1->ack_seq=0;
t11621net/inet/tcp.ct1->ack=1;
t11623net/inet/tcp.ct1->ack_seq=htonl(th->seq);
t11625net/inet/tcp.ct1->ack_seq=htonl(th->seq+1);
t11626net/inet/tcp.ct1->seq=0;
t11629net/inet/tcp.ct1->syn = 0;
t11630net/inet/tcp.ct1->urg = 0;
t11631net/inet/tcp.ct1->fin = 0;
t11632net/inet/tcp.ct1->psh = 0;
t11633net/inet/tcp.ct1->doff = sizeof(*t1)/4;
t11634net/inet/tcp.ctcp_send_check(t1, saddr, daddr, sizeof(*t1), NULL);
t11703net/inet/tcp.cstruct tcphdr *t1;
t11834net/inet/tcp.ct1 =(struct tcphdr *)(buff + 1);
t11853net/inet/tcp.ct1 =(struct tcphdr *)((char *)t1 +tmp);
t11855net/inet/tcp.cmemcpy(t1, skb->h.th, sizeof(*t1));
t11859net/inet/tcp.ct1->dest = skb->h.th->source;
t11860net/inet/tcp.ct1->source = newsk->dummy_th.source;
t11861net/inet/tcp.ct1->seq = ntohl(newsk->send_seq++);
t11862net/inet/tcp.ct1->ack = 1;
t11864net/inet/tcp.ct1->window = ntohs(newsk->window);
t11865net/inet/tcp.ct1->res1 = 0;
t11866net/inet/tcp.ct1->res2 = 0;
t11867net/inet/tcp.ct1->rst = 0;
t11868net/inet/tcp.ct1->urg = 0;
t11869net/inet/tcp.ct1->psh = 0;
t11870net/inet/tcp.ct1->syn = 1;
t11871net/inet/tcp.ct1->ack_seq = ntohl(skb->h.th->seq+1);
t11872net/inet/tcp.ct1->doff = sizeof(*t1)/4+1;
t11874net/inet/tcp.cptr =(unsigned char *)(t1+1);
t11880net/inet/tcp.ctcp_send_check(t1, daddr, saddr, sizeof(*t1)+4, newsk);
t11901net/inet/tcp.cstruct tcphdr *t1, *th;
t11996net/inet/tcp.cbuff->len = sizeof(*t1);
t11997net/inet/tcp.ct1 =(struct tcphdr *)(buff + 1);
t12010net/inet/tcp.ct1 =(struct tcphdr *)((char *)t1 +tmp);
t12013net/inet/tcp.cmemcpy(t1, th, sizeof(*t1));
t12014net/inet/tcp.ct1->seq = ntohl(sk->send_seq);
t12017net/inet/tcp.ct1->ack = 1;
t12021net/inet/tcp.ct1->ack_seq = ntohl(sk->acked_seq);
t12022net/inet/tcp.ct1->window = ntohs(sk->prot->rspace(sk));
t12023net/inet/tcp.ct1->fin = 1;
t12024net/inet/tcp.ct1->rst = need_reset;
t12025net/inet/tcp.ct1->doff = sizeof(*t1)/4;
t12026net/inet/tcp.ctcp_send_check(t1, sk->saddr, sk->daddr, sizeof(*t1), sk);
t12771net/inet/tcp.cstruct tcphdr *t1;
t12811net/inet/tcp.ct1 = (struct tcphdr *)(buff + 1);
t12823net/inet/tcp.ct1 = (struct tcphdr *)((char *)t1 +tmp);
t12825net/inet/tcp.cmemcpy(t1,(void *)&(sk->dummy_th), sizeof(*t1));
t12826net/inet/tcp.ct1->seq = ntohl(sk->send_seq++);
t12828net/inet/tcp.ct1->ack = 0;
t12829net/inet/tcp.ct1->window = 2;
t12830net/inet/tcp.ct1->res1=0;
t12831net/inet/tcp.ct1->res2=0;
t12832net/inet/tcp.ct1->rst = 0;
t12833net/inet/tcp.ct1->urg = 0;
t12834net/inet/tcp.ct1->psh = 0;
t12835net/inet/tcp.ct1->syn = 1;
t12836net/inet/tcp.ct1->urg_ptr = 0;
t12837net/inet/tcp.ct1->doff = 6;
t12840net/inet/tcp.cptr = (unsigned char *)(t1+1);
t12846net/inet/tcp.ctcp_send_check(t1, sk->saddr, sk->daddr,
t13335net/inet/tcp.cstruct tcphdr *t1;
t13353net/inet/tcp.ct1 = (struct tcphdr *)(buff + 1);
t13364net/inet/tcp.ct1 = (struct tcphdr *)((char *)t1 +tmp);
t13366net/inet/tcp.cmemcpy(t1,(void *) &sk->dummy_th, sizeof(*t1));
t13372net/inet/tcp.ct1->seq = ntohl(sk->send_seq-1);
t13373net/inet/tcp.ct1->ack = 1; 
t13374net/inet/tcp.ct1->res1= 0;
t13375net/inet/tcp.ct1->res2= 0;
t13376net/inet/tcp.ct1->rst = 0;
t13377net/inet/tcp.ct1->urg = 0;
t13378net/inet/tcp.ct1->psh = 0;
t13379net/inet/tcp.ct1->fin = 0;
t13380net/inet/tcp.ct1->syn = 0;
t13381net/inet/tcp.ct1->ack_seq = ntohl(sk->acked_seq);
t13382net/inet/tcp.ct1->window = ntohs(sk->prot->rspace(sk));
t13383net/inet/tcp.ct1->doff = sizeof(*t1)/4;
t13384net/inet/tcp.ctcp_send_check(t1, sk->saddr, sk->daddr, sizeof(*t1), sk);