Symbol: IPPORT_RESERVED
usr/src/cmd/cmd-inet/common/kcmd.c
259
if (!anyport && SOCK_PORT(from) >= IPPORT_RESERVED) {
usr/src/cmd/cmd-inet/usr.lib/in.mpathd/mpd_main.c
2304
is_priv = ntohs(peer_sin->sin_port) < IPPORT_RESERVED;
usr/src/cmd/cmd-inet/usr.lib/in.mpathd/mpd_main.c
2328
is_priv = ntohs(peer_sin6->sin6_port) < IPPORT_RESERVED;
usr/src/cmd/cmd-inet/usr.sbin/in.rlogind.c
1002
(port >= (in_port_t)IPPORT_RESERVED) ||
usr/src/cmd/cmd-inet/usr.sbin/in.rlogind.c
1003
(port < (in_port_t)(IPPORT_RESERVED/2)));
usr/src/cmd/cmd-inet/usr.sbin/in.routed/input.c
529
if (ntohs(from->sin_port) > IPPORT_RESERVED) {
usr/src/cmd/cmd-inet/usr.sbin/in.rshd.c
524
bad_port = (port >= IPPORT_RESERVED ||
usr/src/cmd/cmd-inet/usr.sbin/in.rshd.c
525
port < (uint_t)(IPPORT_RESERVED/2));
usr/src/cmd/cmd-inet/usr.sbin/in.rshd.c
607
lport = IPPORT_RESERVED - 1;
usr/src/cmd/cmd-inet/usr.sbin/in.rshd.c
615
if (!krb5auth_flag && (port >= IPPORT_RESERVED)) {
usr/src/cmd/rpcbind/pmap_svc.c
188
if ((op == PMAPPROC_SET) && (reg.pm_port < IPPORT_RESERVED) &&
usr/src/cmd/rpcbind/pmap_svc.c
189
(ntohs(who->sin_port) >= IPPORT_RESERVED)) {
usr/src/cmd/sendmail/src/daemon.c
2543
int rport = IPPORT_RESERVED - 1;
usr/src/cmd/ypcmd/ypserv_map.c
240
if (port < IPPORT_RESERVED) {
usr/src/cmd/ypcmd/ypxfrd_server.c
208
(ntohs(port) > IPPORT_RESERVED)) {
usr/src/lib/libdhcpagent/common/dhcpagent_ipc.c
496
*is_priv = ntohs(sin_peer.sin_port) < IPPORT_RESERVED;
usr/src/lib/libdscp/libdscp.c
73
if ((sockfd < 0) || (port >= IPPORT_RESERVED)) {
usr/src/lib/libnsl/nss/netdir_inet_sundry.c
1052
if (port < IPPORT_RESERVED)
usr/src/lib/libnsl/rpc/rpc_soc.c
290
#define ENDPORT (IPPORT_RESERVED - 1)
usr/src/lib/librpcsvc/common/bindresvport.c
54
#define ENDPORT (IPPORT_RESERVED - 1)
usr/src/lib/libsocket/inet/rcmd.c
335
if (ntohs(sin->sin_port) >= IPPORT_RESERVED) {
usr/src/lib/libsocket/inet/rcmd.c
345
if (ntohs(sin6->sin6_port) >= IPPORT_RESERVED) {
usr/src/lib/print/libpapi-lpd/common/lpd-port.c
260
port = IPPORT_RESERVED - 1;
usr/src/stand/lib/sock/socket.c
281
rsvdport = (IPPORT_RESERVED / 2) - 1;
usr/src/stand/lib/sock/socket.c
285
if (++rsvdport >= IPPORT_RESERVED)
usr/src/stand/lib/sock/socket.c
286
p = rsvdport = IPPORT_RESERVED / 2;
usr/src/uts/common/fs/nfs/nfs_server.c
2042
IPPORT_RESERVED) ||
usr/src/uts/common/fs/nfs/nfs_server.c
2045
IPPORT_RESERVED)) {
usr/src/uts/common/fs/nfs/nfs_server.c
2314
IPPORT_RESERVED) ||
usr/src/uts/common/fs/nfs/nfs_server.c
2317
IPPORT_RESERVED)) {
usr/src/uts/common/inet/tcp/tcp_bind.c
290
static in_port_t next_priv_port = IPPORT_RESERVED - 1;
usr/src/uts/common/inet/tcp/tcp_bind.c
296
next_priv_port >= IPPORT_RESERVED) {
usr/src/uts/common/inet/tcp/tcp_bind.c
297
next_priv_port = IPPORT_RESERVED - 1;
usr/src/uts/common/inet/tcp/tcp_bind.c
692
loopmax = IPPORT_RESERVED -
usr/src/uts/common/inet/udp/udp.c
442
static in_port_t next_priv_port = IPPORT_RESERVED - 1;
usr/src/uts/common/inet/udp/udp.c
449
next_priv_port >= IPPORT_RESERVED) {
usr/src/uts/common/inet/udp/udp.c
450
next_priv_port = IPPORT_RESERVED - 1;
usr/src/uts/common/inet/udp/udp.c
5161
loopmax = IPPORT_RESERVED - us->us_min_anonpriv_port;
usr/src/uts/common/rpc/clnt.h
331
#define RESERVED_PORTSPACE (IPPORT_RESERVED - (IPPORT_RESERVED/2))
usr/src/uts/common/rpc/clnt.h
332
#define NONRESERVED_PORTSPACE (0xFFFF - IPPORT_RESERVED)
usr/src/uts/common/rpc/clnt_gen.c
60
#define MAX_PRIV (IPPORT_RESERVED-1)
usr/src/uts/common/rpc/clnt_gen.c
61
#define MIN_PRIV (IPPORT_RESERVED/2)