taglinefilesource code
t11301net/inet/tcp.cstruct tcphdr *t1;
t11338net/inet/tcp.ct1 =(struct tcphdr *) buff->data;
t11353net/inet/tcp.ct1 =(struct tcphdr *)((char *)t1 +tmp);
t11355net/inet/tcp.cmemcpy(t1, th, sizeof(*t1));
t11361net/inet/tcp.ct1->dest = th->source;
t11362net/inet/tcp.ct1->source = th->dest;
t11363net/inet/tcp.ct1->seq = ntohl(sequence);
t11364net/inet/tcp.ct1->ack = 1;
t11366net/inet/tcp.ct1->window = ntohs(sk->window);
t11367net/inet/tcp.ct1->res1 = 0;
t11368net/inet/tcp.ct1->res2 = 0;
t11369net/inet/tcp.ct1->rst = 0;
t11370net/inet/tcp.ct1->urg = 0;
t11371net/inet/tcp.ct1->syn = 0;
t11372net/inet/tcp.ct1->psh = 0;
t11373net/inet/tcp.ct1->fin = 0;
t11401net/inet/tcp.ct1->ack_seq = ntohl(ack);
t11402net/inet/tcp.ct1->doff = sizeof(*t1)/4;
t11403net/inet/tcp.ctcp_send_check(t1, sk->saddr, daddr, sizeof(*t1), sk);
t11797net/inet/tcp.cstruct tcphdr *t1;
t11840net/inet/tcp.ct1 =(struct tcphdr *)(buff->data +tmp);
t11842net/inet/tcp.cmemcpy(t1,(void *) &sk->dummy_th, sizeof(*t1));
t11843net/inet/tcp.ct1->seq = htonl(sk->sent_seq);
t11844net/inet/tcp.ct1->ack = 1;
t11845net/inet/tcp.ct1->res1 = 0;
t11846net/inet/tcp.ct1->res2 = 0;
t11847net/inet/tcp.ct1->rst = 0;
t11848net/inet/tcp.ct1->urg = 0;
t11849net/inet/tcp.ct1->syn = 0;
t11850net/inet/tcp.ct1->psh = 0;
t11854net/inet/tcp.ct1->window = ntohs(sk->window);
t11855net/inet/tcp.ct1->ack_seq = ntohl(sk->acked_seq);
t11856net/inet/tcp.ct1->doff = sizeof(*t1)/4;
t11857net/inet/tcp.ctcp_send_check(t1, sk->saddr, sk->daddr, sizeof(*t1), sk);
t12307net/inet/tcp.cstruct tcphdr *t1;
t12329net/inet/tcp.cbuff->len = sizeof(*t1);
t12331net/inet/tcp.ct1 =(struct tcphdr *) buff->data;
t12364net/inet/tcp.ct1 =(struct tcphdr *)((char *)t1 +tmp);
t12367net/inet/tcp.cmemcpy(t1, th, sizeof(*t1));
t12368net/inet/tcp.ct1->seq = ntohl(sk->write_seq);
t12371net/inet/tcp.ct1->ack = 1;
t12372net/inet/tcp.ct1->ack_seq = ntohl(sk->acked_seq);
t12373net/inet/tcp.ct1->window = ntohs(sk->window=tcp_select_window(sk));
t12374net/inet/tcp.ct1->fin = 1;
t12375net/inet/tcp.ct1->rst = 0;
t12376net/inet/tcp.ct1->doff = sizeof(*t1)/4;
t12377net/inet/tcp.ctcp_send_check(t1, sk->saddr, sk->daddr, sizeof(*t1), sk);
t12497net/inet/tcp.cstruct tcphdr *t1;
t12517net/inet/tcp.cbuff->len = sizeof(*t1);
t12522net/inet/tcp.ct1 =(struct tcphdr *) buff->data;
t12537net/inet/tcp.ct1 =(struct tcphdr *)((char *)t1 +tmp);
t12539net/inet/tcp.cmemcpy(t1, th, sizeof(*t1));
t12545net/inet/tcp.ct1->dest = th->source;
t12546net/inet/tcp.ct1->source = th->dest;
t12547net/inet/tcp.ct1->rst = 1;  
t12548net/inet/tcp.ct1->window = 0;
t12552net/inet/tcp.ct1->ack = 0;
t12553net/inet/tcp.ct1->seq = th->ack_seq;
t12554net/inet/tcp.ct1->ack_seq = 0;
t12558net/inet/tcp.ct1->ack = 1;
t12560net/inet/tcp.ct1->ack_seq=htonl(th->seq);
t12562net/inet/tcp.ct1->ack_seq=htonl(th->seq+1);
t12563net/inet/tcp.ct1->seq=0;
t12566net/inet/tcp.ct1->syn = 0;
t12567net/inet/tcp.ct1->urg = 0;
t12568net/inet/tcp.ct1->fin = 0;
t12569net/inet/tcp.ct1->psh = 0;
t12570net/inet/tcp.ct1->doff = sizeof(*t1)/4;
t12571net/inet/tcp.ctcp_send_check(t1, saddr, daddr, sizeof(*t1), NULL);
t12678net/inet/tcp.cstruct tcphdr *t1;
t12871net/inet/tcp.ct1 =(struct tcphdr *) buff->data;
t12899net/inet/tcp.ct1 =(struct tcphdr *)((char *)t1 +tmp);
t12901net/inet/tcp.cmemcpy(t1, skb->h.th, sizeof(*t1));
t12906net/inet/tcp.ct1->dest = skb->h.th->source;
t12907net/inet/tcp.ct1->source = newsk->dummy_th.source;
t12908net/inet/tcp.ct1->seq = ntohl(newsk->write_seq++);
t12909net/inet/tcp.ct1->ack = 1;
t12912net/inet/tcp.ct1->window = ntohs(newsk->window);
t12913net/inet/tcp.ct1->res1 = 0;
t12914net/inet/tcp.ct1->res2 = 0;
t12915net/inet/tcp.ct1->rst = 0;
t12916net/inet/tcp.ct1->urg = 0;
t12917net/inet/tcp.ct1->psh = 0;
t12918net/inet/tcp.ct1->syn = 1;
t12919net/inet/tcp.ct1->ack_seq = ntohl(skb->h.th->seq+1);
t12920net/inet/tcp.ct1->doff = sizeof(*t1)/4+1;
t12921net/inet/tcp.cptr =(unsigned char *)(t1+1);
t12927net/inet/tcp.ctcp_send_check(t1, daddr, saddr, sizeof(*t1)+4, newsk);
t14263net/inet/tcp.cstruct tcphdr *t1;
t14311net/inet/tcp.ct1 = (struct tcphdr *) buff->data;
t14334net/inet/tcp.ct1 = (struct tcphdr *)((char *)t1 +tmp);
t14336net/inet/tcp.cmemcpy(t1,(void *)&(sk->dummy_th), sizeof(*t1));
t14337net/inet/tcp.ct1->seq = ntohl(sk->write_seq++);
t14340net/inet/tcp.ct1->ack = 0;
t14341net/inet/tcp.ct1->window = 2;
t14342net/inet/tcp.ct1->res1=0;
t14343net/inet/tcp.ct1->res2=0;
t14344net/inet/tcp.ct1->rst = 0;
t14345net/inet/tcp.ct1->urg = 0;
t14346net/inet/tcp.ct1->psh = 0;
t14347net/inet/tcp.ct1->syn = 1;
t14348net/inet/tcp.ct1->urg_ptr = 0;
t14349net/inet/tcp.ct1->doff = 6;
t14385net/inet/tcp.cptr = (unsigned char *)(t1+1);
t14390net/inet/tcp.ctcp_send_check(t1, sk->saddr, sk->daddr,
t14905net/inet/tcp.cstruct tcphdr *t1;
t14937net/inet/tcp.ct1 = (struct tcphdr *) buff->data;
t14949net/inet/tcp.ct1 = (struct tcphdr *)((char *)t1 +tmp);
t14951net/inet/tcp.cmemcpy(t1,(void *) &sk->dummy_th, sizeof(*t1));
t14958net/inet/tcp.ct1->seq = htonl(sk->sent_seq-1);
t14959net/inet/tcp.ct1->ack = 1; 
t14960net/inet/tcp.ct1->res1= 0;
t14961net/inet/tcp.ct1->res2= 0;
t14962net/inet/tcp.ct1->rst = 0;
t14963net/inet/tcp.ct1->urg = 0;
t14964net/inet/tcp.ct1->psh = 0;
t14965net/inet/tcp.ct1->fin = 0;  /* We are sending a 'previous' sequence, and 0 bytes of data - thus no FIN bit */
t14966net/inet/tcp.ct1->syn = 0;
t14967net/inet/tcp.ct1->ack_seq = ntohl(sk->acked_seq);
t14968net/inet/tcp.ct1->window = ntohs(tcp_select_window(sk));
t14969net/inet/tcp.ct1->doff = sizeof(*t1)/4;
t14970net/inet/tcp.ctcp_send_check(t1, sk->saddr, sk->daddr, sizeof(*t1), sk);