taglinefilesource code
thp480drivers/net/slhc.cregister struct tcphdr *thp;
thp515drivers/net/slhc.cthp = &cs->cs_tcp;
thp522drivers/net/slhc.cthp->check = htons(x);
thp524drivers/net/slhc.cthp->psh = (changes & TCP_PUSH_BIT) ? 1 : 0;
thp531drivers/net/slhc.chdrlen = ip->ihl * 4 + thp->doff * 4;
thp538drivers/net/slhc.cthp->ack_seq = htonl( ntohl(thp->ack_seq) + i);
thp539drivers/net/slhc.cthp->seq = htonl( ntohl(thp->seq) + i);
thp544drivers/net/slhc.cthp->seq = htonl( ntohl(thp->seq) +
thp550drivers/net/slhc.cthp->urg = 1;
thp555drivers/net/slhc.cthp->urg_ptr = htons(x);
thp557drivers/net/slhc.cthp->urg = 0;
thp563drivers/net/slhc.cthp->window = htons( ntohs(thp->window) + x);
thp570drivers/net/slhc.cthp->ack_seq = htonl( ntohl(thp->ack_seq) + x);
thp577drivers/net/slhc.cthp->seq = htonl( ntohl(thp->seq) + x);
thp618drivers/net/slhc.cmemcpy(cp, thp, 20);
thp621drivers/net/slhc.cif (thp->doff > 5) {
thp622drivers/net/slhc.cmemcpy(cp, cs->cs_tcpopt, ((thp->doff) - 5) * 4);
thp623drivers/net/slhc.ccp += ((thp->doff) - 5) * 4;
thp640drivers/net/slhc.cstruct tcphdr *thp;
thp665drivers/net/slhc.cthp = (struct tcphdr *)(((unsigned char *)ip) + ip->ihl*4);
thp675drivers/net/slhc.cmemcpy(&cs->cs_tcp,thp,20);
thp678drivers/net/slhc.cif (thp->doff > 5)
thp679drivers/net/slhc.cmemcpy(cs->cs_tcpopt, thp+1, ((thp->doff) - 5) * 4);
thp680drivers/net/slhc.ccs->cs_hsize = ip->ihl*2 + thp->doff*2;