taglinefilesource code
t11298net/inet/tcp.cstruct tcphdr *t1;
t11335net/inet/tcp.ct1 =(struct tcphdr *) buff->data;
t11350net/inet/tcp.ct1 =(struct tcphdr *)((char *)t1 +tmp);
t11352net/inet/tcp.cmemcpy(t1, th, sizeof(*t1));
t11358net/inet/tcp.ct1->dest = th->source;
t11359net/inet/tcp.ct1->source = th->dest;
t11360net/inet/tcp.ct1->seq = ntohl(sequence);
t11361net/inet/tcp.ct1->ack = 1;
t11363net/inet/tcp.ct1->window = ntohs(sk->window);
t11364net/inet/tcp.ct1->res1 = 0;
t11365net/inet/tcp.ct1->res2 = 0;
t11366net/inet/tcp.ct1->rst = 0;
t11367net/inet/tcp.ct1->urg = 0;
t11368net/inet/tcp.ct1->syn = 0;
t11369net/inet/tcp.ct1->psh = 0;
t11370net/inet/tcp.ct1->fin = 0;
t11398net/inet/tcp.ct1->ack_seq = ntohl(ack);
t11399net/inet/tcp.ct1->doff = sizeof(*t1)/4;
t11400net/inet/tcp.ctcp_send_check(t1, sk->saddr, daddr, sizeof(*t1), sk);
t11794net/inet/tcp.cstruct tcphdr *t1;
t11837net/inet/tcp.ct1 =(struct tcphdr *)(buff->data +tmp);
t11839net/inet/tcp.cmemcpy(t1,(void *) &sk->dummy_th, sizeof(*t1));
t11840net/inet/tcp.ct1->seq = htonl(sk->sent_seq);
t11841net/inet/tcp.ct1->ack = 1;
t11842net/inet/tcp.ct1->res1 = 0;
t11843net/inet/tcp.ct1->res2 = 0;
t11844net/inet/tcp.ct1->rst = 0;
t11845net/inet/tcp.ct1->urg = 0;
t11846net/inet/tcp.ct1->syn = 0;
t11847net/inet/tcp.ct1->psh = 0;
t11851net/inet/tcp.ct1->window = ntohs(sk->window);
t11852net/inet/tcp.ct1->ack_seq = ntohl(sk->acked_seq);
t11853net/inet/tcp.ct1->doff = sizeof(*t1)/4;
t11854net/inet/tcp.ctcp_send_check(t1, sk->saddr, sk->daddr, sizeof(*t1), sk);
t12304net/inet/tcp.cstruct tcphdr *t1;
t12326net/inet/tcp.cbuff->len = sizeof(*t1);
t12328net/inet/tcp.ct1 =(struct tcphdr *) buff->data;
t12361net/inet/tcp.ct1 =(struct tcphdr *)((char *)t1 +tmp);
t12364net/inet/tcp.cmemcpy(t1, th, sizeof(*t1));
t12365net/inet/tcp.ct1->seq = ntohl(sk->write_seq);
t12368net/inet/tcp.ct1->ack = 1;
t12369net/inet/tcp.ct1->ack_seq = ntohl(sk->acked_seq);
t12370net/inet/tcp.ct1->window = ntohs(sk->window=tcp_select_window(sk));
t12371net/inet/tcp.ct1->fin = 1;
t12372net/inet/tcp.ct1->rst = 0;
t12373net/inet/tcp.ct1->doff = sizeof(*t1)/4;
t12374net/inet/tcp.ctcp_send_check(t1, sk->saddr, sk->daddr, sizeof(*t1), sk);
t12494net/inet/tcp.cstruct tcphdr *t1;
t12514net/inet/tcp.cbuff->len = sizeof(*t1);
t12519net/inet/tcp.ct1 =(struct tcphdr *) buff->data;
t12534net/inet/tcp.ct1 =(struct tcphdr *)((char *)t1 +tmp);
t12536net/inet/tcp.cmemcpy(t1, th, sizeof(*t1));
t12542net/inet/tcp.ct1->dest = th->source;
t12543net/inet/tcp.ct1->source = th->dest;
t12544net/inet/tcp.ct1->rst = 1;  
t12545net/inet/tcp.ct1->window = 0;
t12549net/inet/tcp.ct1->ack = 0;
t12550net/inet/tcp.ct1->seq = th->ack_seq;
t12551net/inet/tcp.ct1->ack_seq = 0;
t12555net/inet/tcp.ct1->ack = 1;
t12557net/inet/tcp.ct1->ack_seq=htonl(th->seq);
t12559net/inet/tcp.ct1->ack_seq=htonl(th->seq+1);
t12560net/inet/tcp.ct1->seq=0;
t12563net/inet/tcp.ct1->syn = 0;
t12564net/inet/tcp.ct1->urg = 0;
t12565net/inet/tcp.ct1->fin = 0;
t12566net/inet/tcp.ct1->psh = 0;
t12567net/inet/tcp.ct1->doff = sizeof(*t1)/4;
t12568net/inet/tcp.ctcp_send_check(t1, saddr, daddr, sizeof(*t1), NULL);
t12675net/inet/tcp.cstruct tcphdr *t1;
t12868net/inet/tcp.ct1 =(struct tcphdr *) buff->data;
t12896net/inet/tcp.ct1 =(struct tcphdr *)((char *)t1 +tmp);
t12898net/inet/tcp.cmemcpy(t1, skb->h.th, sizeof(*t1));
t12903net/inet/tcp.ct1->dest = skb->h.th->source;
t12904net/inet/tcp.ct1->source = newsk->dummy_th.source;
t12905net/inet/tcp.ct1->seq = ntohl(newsk->write_seq++);
t12906net/inet/tcp.ct1->ack = 1;
t12909net/inet/tcp.ct1->window = ntohs(newsk->window);
t12910net/inet/tcp.ct1->res1 = 0;
t12911net/inet/tcp.ct1->res2 = 0;
t12912net/inet/tcp.ct1->rst = 0;
t12913net/inet/tcp.ct1->urg = 0;
t12914net/inet/tcp.ct1->psh = 0;
t12915net/inet/tcp.ct1->syn = 1;
t12916net/inet/tcp.ct1->ack_seq = ntohl(skb->h.th->seq+1);
t12917net/inet/tcp.ct1->doff = sizeof(*t1)/4+1;
t12918net/inet/tcp.cptr =(unsigned char *)(t1+1);
t12924net/inet/tcp.ctcp_send_check(t1, daddr, saddr, sizeof(*t1)+4, newsk);
t14260net/inet/tcp.cstruct tcphdr *t1;
t14308net/inet/tcp.ct1 = (struct tcphdr *) buff->data;
t14331net/inet/tcp.ct1 = (struct tcphdr *)((char *)t1 +tmp);
t14333net/inet/tcp.cmemcpy(t1,(void *)&(sk->dummy_th), sizeof(*t1));
t14334net/inet/tcp.ct1->seq = ntohl(sk->write_seq++);
t14337net/inet/tcp.ct1->ack = 0;
t14338net/inet/tcp.ct1->window = 2;
t14339net/inet/tcp.ct1->res1=0;
t14340net/inet/tcp.ct1->res2=0;
t14341net/inet/tcp.ct1->rst = 0;
t14342net/inet/tcp.ct1->urg = 0;
t14343net/inet/tcp.ct1->psh = 0;
t14344net/inet/tcp.ct1->syn = 1;
t14345net/inet/tcp.ct1->urg_ptr = 0;
t14346net/inet/tcp.ct1->doff = 6;
t14382net/inet/tcp.cptr = (unsigned char *)(t1+1);
t14387net/inet/tcp.ctcp_send_check(t1, sk->saddr, sk->daddr,
t14900net/inet/tcp.cstruct tcphdr *t1;
t14932net/inet/tcp.ct1 = (struct tcphdr *) buff->data;
t14944net/inet/tcp.ct1 = (struct tcphdr *)((char *)t1 +tmp);
t14946net/inet/tcp.cmemcpy(t1,(void *) &sk->dummy_th, sizeof(*t1));
t14953net/inet/tcp.ct1->seq = htonl(sk->sent_seq-1);
t14954net/inet/tcp.ct1->ack = 1; 
t14955net/inet/tcp.ct1->res1= 0;
t14956net/inet/tcp.ct1->res2= 0;
t14957net/inet/tcp.ct1->rst = 0;
t14958net/inet/tcp.ct1->urg = 0;
t14959net/inet/tcp.ct1->psh = 0;
t14960net/inet/tcp.ct1->fin = 0;  /* We are sending a 'previous' sequence, and 0 bytes of data - thus no FIN bit */
t14961net/inet/tcp.ct1->syn = 0;
t14962net/inet/tcp.ct1->ack_seq = ntohl(sk->acked_seq);
t14963net/inet/tcp.ct1->window = ntohs(tcp_select_window(sk));
t14964net/inet/tcp.ct1->doff = sizeof(*t1)/4;
t14965net/inet/tcp.ctcp_send_check(t1, sk->saddr, sk->daddr, sizeof(*t1), sk);