9330 stack overflow when creating a deeply nested dataset
[unleashed.git] / usr / src / man / man3rpc / rusers.3rpc
blob7f034277abcc423a433eacf298c66b0e6c92c634
1 '\" te
2 .\"  Copyright 1989 AT&T  Copyright (c) 1997, Sun Microsystems, Inc.  All Rights Reserved
3 .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License").  You may not use this file except in compliance with the License.
4 .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing.  See the License for the specific language governing permissions and limitations under the License.
5 .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE.  If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner]
6 .TH RUSERS 3RPC "Dec 30, 1996"
7 .SH NAME
8 rusers, rnusers \- return information about users on remote machines
9 .SH SYNOPSIS
10 .LP
11 .nf
12 \fBcc\fR [ \fIflag\fR ... ] \fIfile\fR ... \fB-lrpcsvc\fR [ \fIlibrary\fR ... ]
13 #include <rpc/rpc.h>
14 #include <rpcsvc/rusers.h>
16 \fBenum clnt_stat\fR \fBrusers\fR(\fBchar *\fR\fIhost\fR, \fBstruct utmpidlearr *\fR\fIup\fR);
17 .fi
19 .LP
20 .nf
21 \fBint\fR \fBrnusers\fR(\fBchar *\fR\fIhost\fR);
22 .fi
24 .SH PROTOCOL
25 .sp
26 .LP
27 \fB/usr/include/rpcsvc/rusers.x\fR
28 .SH DESCRIPTION
29 .sp
30 .LP
31 These routines require that the \fBrpc.rusersd\fR(1M) daemon be configured and
32 available on the remote system indicated by \fIhost\fR. The \fBrusers()\fR
33 protocol is used to retrieve information about users logged in on the remote
34 system.
35 .sp
36 .LP
37 \fBrusers()\fR fills the \fButmpidlearr\fR structure with data about
38 \fIhost\fR, and returns \fB0\fR if successful. \fIup\fR must point to an
39 allocated \fButmpidlearr\fR structure. If \fBrusers()\fR returns successful it
40 will have allocated data structures within the \fIup\fR structure, which should
41 be freed with \fBxdr_free\fR(3NSL) when you no longer need them:
42 .sp
43 .in +2
44 .nf
45 xdr_free(xdr_utimpidlearr, up);
46 .fi
47 .in -2
48 .sp
50 .sp
51 .LP
52 On error, the returned value can be interpreted as an  \fBenum\fR
53 \fBclnt_stat\fR and can be displayed with \fBclnt_perror\fR(3NSL) or
54 \fBclnt_sperrno\fR(3NSL).
55 .sp
56 .LP
57 See the header  \fB<rpcsvc/rusers.h>\fR for a definition of struct
58 \fButmpidlearr\fR.
59 .sp
60 .LP
61 \fBrnusers()\fR returns the number of users logged on to \fIhost\fR
62 (\fB\(mi1\fR if it cannot determine that number).
63 .sp
64 .LP
65 The following  \fBXDR\fR routines are available in \fBlibrpcsvc\fR:
66 .sp
67 .in +2
68 .nf
69 xdr_utmpidlearr
70 .fi
71 .in -2
72 .sp
74 .SH ATTRIBUTES
75 .sp
76 .LP
77 See \fBattributes\fR(5) for descriptions of the following attributes:
78 .sp
80 .sp
81 .TS
82 box;
83 c | c
84 l | l .
85 ATTRIBUTE TYPE  ATTRIBUTE VALUE
87 MT-Level        MT-Safe
88 .TE
90 .SH SEE ALSO
91 .sp
92 .LP
93 \fBrusers\fR(1), \fBrpc.rusersd\fR(1M), \fBrpc_clnt_calls\fR(3NSL),
94 \fBxdr_free\fR(3NSL), \fBattributes\fR(5)