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);
thp623drivers/net/slhc.cmemcpy(cp, thp, 20);
thp626drivers/net/slhc.cif (thp->doff > 5) {
thp627drivers/net/slhc.cmemcpy(cp, cs->cs_tcpopt, ((thp->doff) - 5) * 4);
thp628drivers/net/slhc.ccp += ((thp->doff) - 5) * 4;
thp644drivers/net/slhc.cstruct tcphdr *thp;
thp669drivers/net/slhc.cthp = (struct tcphdr *)(((unsigned char *)ip) + ip->ihl*4);
thp679drivers/net/slhc.cmemcpy(&cs->cs_tcp,thp,20);
thp682drivers/net/slhc.cif (thp->doff > 5)
thp683drivers/net/slhc.cmemcpy(cs->cs_tcpopt, thp+1, ((thp->doff) - 5) * 4);
thp684drivers/net/slhc.ccs->cs_hsize = ip->ihl*2 + thp->doff*2;