Home
last modified time | relevance | path

Searched refs:th_urp (Results 1 – 10 of 10) sorted by relevance

/titanic_50/usr/src/uts/common/io/ppp/spppcomp/
H A Dvjcompress.c301 deltaS = ntohs(th->th_urp); in vj_compress_tcp()
307 } else if (th->th_urp != oth->th_urp) { in vj_compress_tcp()
619 DECODEU(th->th_urp); in vj_uncompress_tcp()
/titanic_50/usr/src/cmd/cmd-inet/usr.sbin/snoop/
H A Dsnoop_tcp.c114 ntohs(tcp->th_urp)); in interpret_tcp()
199 (void) sprintf(get_line(((char *)(uintptr_t)tcp->th_urp - dlc_header) + in interpret_tcp()
200 4, 1), "Urgent pointer = %d", ntohs(tcp->th_urp)); in interpret_tcp()
/titanic_50/usr/src/uts/common/netinet/
H A Dtcpip.h41 #define ti_urp ti_t.th_urp
H A Dtcp.h74 uint16_t th_urp; /* urgent pointer */ member
/titanic_50/usr/src/stand/lib/tcp/
H A Dtcp_inet.h79 uint8_t th_urp[2]; /* Urgent pointer */ member
/titanic_50/usr/src/lib/libdtrace/common/
H A Dtcp.d.in166 tcp_urgent = ntohs(*(uint16_t *)T->th_urp);
208 tcp_urgent = T != NULL ? ntohs(*(uint16_t *)((tcph_t *)T)->th_urp) : 0;
/titanic_50/usr/src/cmd/ipf/lib/common/
H A Dipft_tx.c296 tcp->th_urp = htons(1);
/titanic_50/usr/src/uts/common/inet/
H A Dtcp.h102 uint8_t th_urp[2]; /* Urgent pointer */ member
/titanic_50/usr/src/uts/common/inet/ipf/
H A Dfil.c1076 if ((flags & TH_URG) != 0 && (tcp->th_urp == 0)) {
1078 } else if ((flags & TH_URG) == 0 && (tcp->th_urp != 0)) {
/titanic_50/usr/src/cmd/mdb/common/modules/ip/
H A Dip.c1160 mdb_nhconvert(&urp, &tcph->th_urp, sizeof (urp)); in tcphdr_print()