taglinefilesource code
thp483drivers/net/slhc.cregister struct tcphdr *thp;
thp516drivers/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;
thp554drivers/net/slhc.cthp->urg_ptr = htons(x);
thp556drivers/net/slhc.cthp->urg = 0;
thp561drivers/net/slhc.cthp->window = htons( ntohs(thp->window) + x);
thp567drivers/net/slhc.cthp->ack_seq = htonl( ntohl(thp->ack_seq) + x);
thp573drivers/net/slhc.cthp->seq = htonl( ntohl(thp->seq) + x);
thp611drivers/net/slhc.cmemcpy(cp, thp, 20);
thp614drivers/net/slhc.cif (thp->doff > 5) {
thp615drivers/net/slhc.cmemcpy(cp, cs->cs_tcpopt, ((thp->doff) - 5) * 4);
thp616drivers/net/slhc.ccp += ((thp->doff) - 5) * 4;
thp632drivers/net/slhc.cstruct tcphdr *thp;
thp657drivers/net/slhc.cthp = (struct tcphdr *)(((unsigned char *)ip) + ip->ihl*4);
thp667drivers/net/slhc.cmemcpy(&cs->cs_tcp,thp,20);
thp670drivers/net/slhc.cif (thp->doff > 5)
thp671drivers/net/slhc.cmemcpy(cs->cs_tcpopt, thp+1, ((thp->doff) - 5) * 4);
thp672drivers/net/slhc.ccs->cs_hsize = ip->ihl*2 + thp->doff*2;