taglinefilesource code
thp496drivers/net/slhc.cregister struct tcphdr *thp;
thp529drivers/net/slhc.cthp = &cs->cs_tcp;
thp535drivers/net/slhc.cthp->check = htons(x);
thp537drivers/net/slhc.cthp->psh = (changes & TCP_PUSH_BIT) ? 1 : 0;
thp544drivers/net/slhc.chdrlen = ip->ihl * 4 + thp->doff * 4;
thp551drivers/net/slhc.cthp->ack_seq = htonl( ntohl(thp->ack_seq) + i);
thp552drivers/net/slhc.cthp->seq = htonl( ntohl(thp->seq) + i);
thp557drivers/net/slhc.cthp->seq = htonl( ntohl(thp->seq) +
thp563drivers/net/slhc.cthp->urg = 1;
thp567drivers/net/slhc.cthp->urg_ptr = htons(x);
thp569drivers/net/slhc.cthp->urg = 0;
thp574drivers/net/slhc.cthp->window = htons( ntohs(thp->window) + x);
thp580drivers/net/slhc.cthp->ack_seq = htonl( ntohl(thp->ack_seq) + x);
thp586drivers/net/slhc.cthp->seq = htonl( ntohl(thp->seq) + x);
thp624drivers/net/slhc.cmemcpy(cp, thp, 20);
thp627drivers/net/slhc.cif (thp->doff > 5) {
thp628drivers/net/slhc.cmemcpy(cp, cs->cs_tcpopt, ((thp->doff) - 5) * 4);
thp629drivers/net/slhc.ccp += ((thp->doff) - 5) * 4;
thp645drivers/net/slhc.cstruct tcphdr *thp;
thp670drivers/net/slhc.cthp = (struct tcphdr *)(((unsigned char *)ip) + ip->ihl*4);
thp680drivers/net/slhc.cmemcpy(&cs->cs_tcp,thp,20);
thp683drivers/net/slhc.cif (thp->doff > 5)
thp684drivers/net/slhc.cmemcpy(cs->cs_tcpopt, thp+1, ((thp->doff) - 5) * 4);
thp685drivers/net/slhc.ccs->cs_hsize = ip->ihl*2 + thp->doff*2;