taglinefilesource code
thp495drivers/net/slhc.cregister struct tcphdr *thp;
thp528drivers/net/slhc.cthp = &cs->cs_tcp;
thp534drivers/net/slhc.cthp->check = htons(x);
thp536drivers/net/slhc.cthp->psh = (changes & TCP_PUSH_BIT) ? 1 : 0;
thp543drivers/net/slhc.chdrlen = ip->ihl * 4 + thp->doff * 4;
thp550drivers/net/slhc.cthp->ack_seq = htonl( ntohl(thp->ack_seq) + i);
thp551drivers/net/slhc.cthp->seq = htonl( ntohl(thp->seq) + i);
thp556drivers/net/slhc.cthp->seq = htonl( ntohl(thp->seq) +
thp562drivers/net/slhc.cthp->urg = 1;
thp566drivers/net/slhc.cthp->urg_ptr = htons(x);
thp568drivers/net/slhc.cthp->urg = 0;
thp573drivers/net/slhc.cthp->window = htons( ntohs(thp->window) + x);
thp579drivers/net/slhc.cthp->ack_seq = htonl( ntohl(thp->ack_seq) + x);
thp585drivers/net/slhc.cthp->seq = htonl( ntohl(thp->seq) + x);
thp627drivers/net/slhc.cmemcpy(cp, thp, 20);
thp630drivers/net/slhc.cif (thp->doff > 5) {
thp631drivers/net/slhc.cmemcpy(cp, cs->cs_tcpopt, ((thp->doff) - 5) * 4);
thp632drivers/net/slhc.ccp += ((thp->doff) - 5) * 4;