diff options
author | Ulrich Drepper <drepper@gmail.com> | 2011-04-16 21:59:36 -0400 |
---|---|---|
committer | Ulrich Drepper <drepper@gmail.com> | 2011-04-16 21:59:36 -0400 |
commit | 7b57bfe5988e476ea40934457dfd1c8a231e2391 (patch) | |
tree | 33dbec2b9a1a8fd8472a214945090f31d5372a8e /include/rpc/svc.h | |
parent | e6c61494125126d2ba77e5d99f83887a2ed49783 (diff) | |
download | glibc-7b57bfe5988e476ea40934457dfd1c8a231e2391.tar.gz glibc-7b57bfe5988e476ea40934457dfd1c8a231e2391.tar.xz glibc-7b57bfe5988e476ea40934457dfd1c8a231e2391.zip |
Obsolete RPC implementation in libc.
Diffstat (limited to 'include/rpc/svc.h')
-rw-r--r-- | include/rpc/svc.h | 35 |
1 files changed, 20 insertions, 15 deletions
diff --git a/include/rpc/svc.h b/include/rpc/svc.h index dc758391a2..141971ecf5 100644 --- a/include/rpc/svc.h +++ b/include/rpc/svc.h @@ -10,24 +10,29 @@ libc_hidden_proto (svcerr_noprog) libc_hidden_proto (svcerr_progvers) /* Now define the internal interfaces. */ -extern int registerrpc (u_long prognum, u_long versnum, u_long procnum, - char *(*progname) (char *), xdrproc_t inproc, - xdrproc_t outproc); - extern SVCXPRT *svcfd_create (int fd, u_int sendsize, u_int recvsize); extern int svcudp_enablecache (SVCXPRT *transp, u_long size); extern SVCXPRT *svcunixfd_create (int fd, u_int sendsize, u_int recvsize); -extern bool_t svc_sendreply_internal (SVCXPRT *xprt, xdrproc_t __xdr_results, - caddr_t __xdr_location) attribute_hidden; -extern void svcerr_decode_internal (SVCXPRT *__xprt) attribute_hidden; -extern void svc_getreq_internal (int __rdfds) attribute_hidden; -extern void svc_getreq_common_internal (const int __fd) attribute_hidden; -extern void svc_getreqset_internal (fd_set *__readfds) attribute_hidden; -extern void svc_getreq_poll_internal (struct pollfd *, - const int) attribute_hidden; -extern SVCXPRT *svcudp_create_internal (int __sock) attribute_hidden; -extern SVCXPRT *svcudp_bufcreate_internal (int __sock, u_int __sendsz, - u_int __recvsz) attribute_hidden; + +libc_hidden_proto (svc_exit) +libc_hidden_proto (svc_getreq) +libc_hidden_proto (svc_getreqset) +libc_hidden_proto (svc_run) +libc_hidden_proto (svc_sendreply) +libc_hidden_proto (svcerr_decode) +libc_hidden_proto (svcerr_noproc) +libc_hidden_proto (svcerr_systemerr) +libc_hidden_proto (svcerr_weakauth) +libc_hidden_proto (svcfd_create) +libc_hidden_proto (svcraw_create) +libc_hidden_proto (svctcp_create) +libc_hidden_proto (svcudp_bufcreate) +libc_hidden_proto (svcudp_create) +libc_hidden_proto (svcudp_enablecache) +libc_hidden_proto (svcunix_create) +libc_hidden_proto (svcunixfd_create) +libc_hidden_proto (svc_getreq_common) +libc_hidden_proto (svc_getreq_poll) #endif |