tag | line | file | source code |
thp | 480 | drivers/net/slhc.c | register struct tcphdr *thp; |
thp | 515 | drivers/net/slhc.c | thp = &cs->cs_tcp; |
thp | 522 | drivers/net/slhc.c | thp->check = htons(x); |
thp | 524 | drivers/net/slhc.c | thp->psh = (changes & TCP_PUSH_BIT) ? 1 : 0; |
thp | 531 | drivers/net/slhc.c | hdrlen = ip->ihl * 4 + thp->doff * 4; |
thp | 538 | drivers/net/slhc.c | thp->ack_seq = htonl( ntohl(thp->ack_seq) + i); |
thp | 539 | drivers/net/slhc.c | thp->seq = htonl( ntohl(thp->seq) + i); |
thp | 544 | drivers/net/slhc.c | thp->seq = htonl( ntohl(thp->seq) + |
thp | 550 | drivers/net/slhc.c | thp->urg = 1; |
thp | 555 | drivers/net/slhc.c | thp->urg_ptr = htons(x); |
thp | 557 | drivers/net/slhc.c | thp->urg = 0; |
thp | 563 | drivers/net/slhc.c | thp->window = htons( ntohs(thp->window) + x); |
thp | 570 | drivers/net/slhc.c | thp->ack_seq = htonl( ntohl(thp->ack_seq) + x); |
thp | 577 | drivers/net/slhc.c | thp->seq = htonl( ntohl(thp->seq) + x); |
thp | 618 | drivers/net/slhc.c | memcpy(cp, thp, 20); |
thp | 621 | drivers/net/slhc.c | if (thp->doff > 5) { |
thp | 622 | drivers/net/slhc.c | memcpy(cp, cs->cs_tcpopt, ((thp->doff) - 5) * 4); |
thp | 623 | drivers/net/slhc.c | cp += ((thp->doff) - 5) * 4; |
thp | 640 | drivers/net/slhc.c | struct tcphdr *thp; |
thp | 665 | drivers/net/slhc.c | thp = (struct tcphdr *)(((unsigned char *)ip) + ip->ihl*4); |
thp | 675 | drivers/net/slhc.c | memcpy(&cs->cs_tcp,thp,20); |
thp | 678 | drivers/net/slhc.c | if (thp->doff > 5) |
thp | 679 | drivers/net/slhc.c | memcpy(cs->cs_tcpopt, thp+1, ((thp->doff) - 5) * 4); |
thp | 680 | drivers/net/slhc.c | cs->cs_hsize = ip->ihl*2 + thp->doff*2; |