Hallo, dies ist ein Test.
PWD: /www/data-lst1/unixsoft/unixsoft/kaempfer/.public_html
Running in File Mode
Relative path: ./../.././../../../../usr/include/rpc/rpcent.h
Real path: /usr/include/rpc/rpcent.h
Zurück
/* * Copyright (c) 1989, 2016, Oracle and/or its affiliates. All rights reserved. */ /* Copyright (c) 1983, 1984, 1985, 1986, 1987, 1988, 1989 AT&T */ /* All Rights Reserved */ /* * Portions of this source code were derived from Berkeley * 4.3 BSD under license from the Regents of the University of * California. */ /* * rpcent.h, * For converting rpc program numbers to names etc. * */ #ifndef _RPC_RPCENT_H #define _RPC_RPCENT_H #ifdef __cplusplus extern "C" { #endif struct rpcent { char *r_name; /* name of server for this rpc program */ char **r_aliases; /* alias list */ int r_number; /* rpc program number */ }; extern struct rpcent *getrpcbyname_r (const char *, struct rpcent *, char *, int); extern struct rpcent *getrpcbynumber_r (const int, struct rpcent *, char *, int); extern struct rpcent *getrpcent_r(struct rpcent *, char *, int); /* Old interfaces that return a pointer to a static area; MT-unsafe */ extern struct rpcent *getrpcbyname(const char *); extern struct rpcent *getrpcbynumber(const int); extern struct rpcent *getrpcent(void); extern void setrpcent(const int); extern void endrpcent(void); #ifdef __cplusplus } #endif #endif /* _RPC_RPCENT_H */