table of contents
other versions
- jessie 3.74-1
- jessie-backports 4.10-2~bpo8+1
- stretch 4.10-2
- testing 4.16-1
- stretch-backports 4.16-1~bpo9+1
- unstable 4.16-1
GETRPCENT(3) | Linux Programmer's Manual | GETRPCENT(3) |
NAME¶
getrpcent, getrpcbyname, getrpcbynumber, setrpcent, endrpcent - get RPC entrySYNOPSIS¶
#include <netdb.h> struct rpcent *getrpcent(void); struct rpcent *getrpcbyname(const char *name); struct rpcent *getrpcbynumber(int number); void setrpcent(int stayopen); void endrpcent(void);
DESCRIPTION¶
The getrpcent(), getrpcbyname(), and getrpcbynumber() functions each return a pointer to an object with the following structure containing the broken-out fields of an entry in the RPC program number data base.struct rpcent { char *r_name; /* name of server for this RPC program */ char **r_aliases; /* alias list */ long r_number; /* RPC program number */ };
The members of this structure are:
- r_name
- The name of the server for this RPC program.
- r_aliases
- A NULL-terminated list of alternate names for the RPC program.
- r_number
- The RPC program number for this service.
RETURN VALUE¶
On success, getrpcent(), getrpcbyname(), and getrpcbynumber() return a pointer to a statically allocated rpcent structure. NULL is returned on EOF or error.FILES¶
- /etc/rpc
- RPC program number database.
CONFORMING TO¶
Not in POSIX.1-2001. Present on the BSDs, Solaris, and many other systems.BUGS¶
All information is contained in a static area so it must be copied if it is to be saved.SEE ALSO¶
getrpcent_r(3), rpc(5), rpcinfo(8), ypserv(8)COLOPHON¶
This page is part of release 3.74 of the Linux man-pages project. A description of the project, information about reporting bugs, and the latest version of this page, can be found at http://www.kernel.org/doc/man-pages/.2014-05-28 |