taglinefilesource code
thp498drivers/net/slhc.cregister struct tcphdr *thp;
thp531drivers/net/slhc.cthp = &cs->cs_tcp;
thp537drivers/net/slhc.cthp->check = htons(x);
thp539drivers/net/slhc.cthp->psh = (changes & TCP_PUSH_BIT) ? 1 : 0;
thp546drivers/net/slhc.chdrlen = ip->ihl * 4 + thp->doff * 4;
thp553drivers/net/slhc.cthp->ack_seq = htonl( ntohl(thp->ack_seq) + i);
thp554drivers/net/slhc.cthp->seq = htonl( ntohl(thp->seq) + i);
thp559drivers/net/slhc.cthp->seq = htonl( ntohl(thp->seq) +
thp565drivers/net/slhc.cthp->urg = 1;
thp569drivers/net/slhc.cthp->urg_ptr = htons(x);
thp571drivers/net/slhc.cthp->urg = 0;
thp576drivers/net/slhc.cthp->window = htons( ntohs(thp->window) + x);
thp582drivers/net/slhc.cthp->ack_seq = htonl( ntohl(thp->ack_seq) + x);
thp588drivers/net/slhc.cthp->seq = htonl( ntohl(thp->seq) + x);
thp626drivers/net/slhc.cmemcpy(cp, thp, 20);
thp629drivers/net/slhc.cif (thp->doff > 5) {
thp630drivers/net/slhc.cmemcpy(cp, cs->cs_tcpopt, ((thp->doff) - 5) * 4);
thp631drivers/net/slhc.ccp += ((thp->doff) - 5) * 4;