[Go to CFHT Home Page] Man Pages
Back to Software Index  BORDER=0Manpage Top Level
    rusers(3N) manual page Table of Contents

Name

rusers, rnusers - return information about users on remote machines

Protocol

/usr/include/rpcsvc/rusers.x

Synopsis

cc [ flag ... ] file ... -lrpcsvc [ library ... ]

#include <rpc/rpc.h>
#include <rpcsvc/rusers.h>

enum clnt_stat rusers(char *host, struct utmpidlearr *up);

int rnusers(char *host);

MT-Level

MT-Safe

Description

These routines require that the rpc.rusersd(1M) daemon be configured and available on the remote system indicated by host. The rusers() protocol is used to retrieve information about users logged in on the remote system.

rusers() fills the utmpidlearr structure with data about host, and returns 0 if successful. up must point to an allocated utmpidlearr structure. If rusers() returns successful it will have allocated data structures within the up structure, which should be freed with xdr_free(3N) when you no longer need them:

xdr_free(xdr_utimpidlearr, up);

On error, the returned value can be interpreted as an enum clnt_stat and can be displayed with clnt_perror(3N) or clnt_sperrno(3N) .

See the header <rpcsvc/rusers.h> for a definition of struct utmpidlearr.

rnusers() returns the number of users logged on to host (-1 if it cannot determine that number).

The following XDR routines are available in librpcsvc:

xdr_utmpidlearr.

See Also

rusers(1) , rpc.rusersd(1M) , rpc_clnt_calls(3N) , xdr_free(3N)


Table of Contents