Deleted Added
full compact
rnusers.c (121529) rnusers.c (189087)
1/*
2 * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
3 * unrestricted use provided that this legend is included on all tape
4 * media and as a part of the software program in whole or part. Users
5 * may copy or modify Sun RPC without charge, but are not authorized
6 * to license or distribute it to anyone else except as part of a product or
7 * program developed by the user or with the express written consent of
8 * Sun Microsystems, Inc.

--- 15 unchanged lines hidden (view full) ---

24 * Sun has been advised of the possibility of such damages.
25 *
26 * Sun Microsystems, Inc.
27 * 2550 Garcia Avenue
28 * Mountain View, California 94043
29 */
30
31#include <sys/cdefs.h>
1/*
2 * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
3 * unrestricted use provided that this legend is included on all tape
4 * media and as a part of the software program in whole or part. Users
5 * may copy or modify Sun RPC without charge, but are not authorized
6 * to license or distribute it to anyone else except as part of a product or
7 * program developed by the user or with the express written consent of
8 * Sun Microsystems, Inc.

--- 15 unchanged lines hidden (view full) ---

24 * Sun has been advised of the possibility of such damages.
25 *
26 * Sun Microsystems, Inc.
27 * 2550 Garcia Avenue
28 * Mountain View, California 94043
29 */
30
31#include <sys/cdefs.h>
32__FBSDID("$FreeBSD: head/lib/librpcsvc/rnusers.c 121529 2003-10-26 03:43:35Z peter $");
32__FBSDID("$FreeBSD: head/lib/librpcsvc/rnusers.c 189087 2009-02-26 20:32:11Z ed $");
33
34#if !defined(lint) && defined(SCCSIDS)
35static char sccsid[] = "@(#)rnusers.c 1.2 91/03/11 TIRPC 1.0; from 1.7 89/03/24 SMI";
36#endif
37
38/*
39 * rnusers.c
40 *
41 * "High" level programmatic interface to rnusers RPC service.
42 *
43 * Copyright (c) 1985 by Sun Microsystems, Inc.
44 */
45
46#include <rpc/rpc.h>
47#include <rpcsvc/rnusers.h>
48
49int
33
34#if !defined(lint) && defined(SCCSIDS)
35static char sccsid[] = "@(#)rnusers.c 1.2 91/03/11 TIRPC 1.0; from 1.7 89/03/24 SMI";
36#endif
37
38/*
39 * rnusers.c
40 *
41 * "High" level programmatic interface to rnusers RPC service.
42 *
43 * Copyright (c) 1985 by Sun Microsystems, Inc.
44 */
45
46#include <rpc/rpc.h>
47#include <rpcsvc/rnusers.h>
48
49int
50rusers(host, up)
51 char *host;
52 struct utmpidlearr *up;
50rusers(char *host, utmpidlearr *up)
53{
54 return (callrpc(host, RUSERSPROG, RUSERSVERS_IDLE, RUSERSPROC_NAMES,
55 (xdrproc_t)xdr_void, (char *) NULL,
56 (xdrproc_t)xdr_utmpidlearr, (char *) up));
57}
58
59int
51{
52 return (callrpc(host, RUSERSPROG, RUSERSVERS_IDLE, RUSERSPROC_NAMES,
53 (xdrproc_t)xdr_void, (char *) NULL,
54 (xdrproc_t)xdr_utmpidlearr, (char *) up));
55}
56
57int
60rnusers(host)
61 char *host;
58rnusers(char *host)
62{
63 int nusers;
64
65 if (callrpc(host, RUSERSPROG, RUSERSVERS_ORIG, RUSERSPROC_NUM,
66 (xdrproc_t)xdr_void, (char *) NULL,
67 (xdrproc_t)xdr_u_long, (char *) &nusers) != 0)
68 return (-1);
69 else
70 return (nusers);
71}
72
59{
60 int nusers;
61
62 if (callrpc(host, RUSERSPROG, RUSERSVERS_ORIG, RUSERSPROC_NUM,
63 (xdrproc_t)xdr_void, (char *) NULL,
64 (xdrproc_t)xdr_u_long, (char *) &nusers) != 0)
65 return (-1);
66 else
67 return (nusers);
68}
69