source: rtems-libbsd/freebsd-userspace/include/rpc/rpcb_clnt.h @ 028aaaf

4.1155-freebsd-126-freebsd-12freebsd-9.3
Last change on this file since 028aaaf was 028aaaf, checked in by Joel Sherrill <joel.sherrill@…>, on 07/11/12 at 21:01:37

freebsd-userspace: All files in old libnetworking/libc now present

But they don't all compile. Multiple issues left to address.

  • Property mode set to 100644
File size: 3.0 KB
Line 
1/*      $NetBSD: rpcb_clnt.h,v 1.1 2000/06/02 22:57:56 fvdl Exp $       */
2/*      $FreeBSD$ */
3
4/*
5 * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
6 * unrestricted use provided that this legend is included on all tape
7 * media and as a part of the software program in whole or part.  Users
8 * may copy or modify Sun RPC without charge, but are not authorized
9 * to license or distribute it to anyone else except as part of a product or
10 * program developed by the user.
11 *
12 * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE
13 * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR
14 * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE.
15 *
16 * Sun RPC is provided with no support and without any obligation on the
17 * part of Sun Microsystems, Inc. to assist in its use, correction,
18 * modification or enhancement.
19 *
20 * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE
21 * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC
22 * OR ANY PART THEREOF.
23 *
24 * In no event will Sun Microsystems, Inc. be liable for any lost revenue
25 * or profits or other special, indirect and consequential damages, even if
26 * Sun has been advised of the possibility of such damages.
27 *
28 * Sun Microsystems, Inc.
29 * 2550 Garcia Avenue
30 * Mountain View, California  94043
31 */
32/*
33 * Copyright (c) 1986 - 1991 by Sun Microsystems, Inc.
34 */
35
36/*
37 * rpcb_clnt.h
38 * Supplies C routines to get to rpcbid services.
39 *
40 */
41
42/*
43 * Usage:
44 *      success = rpcb_set(program, version, nconf, address);
45 *      success = rpcb_unset(program, version, nconf);
46 *      success = rpcb_getaddr(program, version, nconf, host);
47 *      head = rpcb_getmaps(nconf, host);
48 *      clnt_stat = rpcb_rmtcall(nconf, host, program, version, procedure,
49 *              xdrargs, argsp, xdrres, resp, tout, addr_ptr)
50 *      success = rpcb_gettime(host, timep)
51 *      uaddr = rpcb_taddr2uaddr(nconf, taddr);
52 *      taddr = rpcb_uaddr2uaddr(nconf, uaddr);
53 */
54
55#ifndef _RPC_RPCB_CLNT_H
56#define _RPC_RPCB_CLNT_H
57
58/* #pragma ident        "@(#)rpcb_clnt.h        1.13    94/04/25 SMI" */
59/* rpcb_clnt.h 1.3 88/12/05 SMI */
60
61#include <rpc/types.h>
62#include <rpc/rpcb_prot.h>
63
64__BEGIN_DECLS
65extern bool_t rpcb_set(const rpcprog_t, const rpcvers_t,
66                       const struct netconfig  *, const struct netbuf *);
67extern bool_t rpcb_unset(const rpcprog_t, const rpcvers_t,
68                         const struct netconfig *);
69extern rpcblist *rpcb_getmaps(const struct netconfig *, const char *);
70extern enum clnt_stat rpcb_rmtcall(const struct netconfig *,
71                                   const char *, const rpcprog_t,
72                                   const rpcvers_t, const rpcproc_t,
73                                   const xdrproc_t, const caddr_t,
74                                   const xdrproc_t, const caddr_t,
75                                   const struct timeval,
76                                   const struct netbuf *);
77extern bool_t rpcb_getaddr(const rpcprog_t, const rpcvers_t,
78                           const struct netconfig *, struct netbuf *,
79                           const  char *);
80extern bool_t rpcb_gettime(const char *, time_t *);
81extern char *rpcb_taddr2uaddr(struct netconfig *, struct netbuf *);
82extern struct netbuf *rpcb_uaddr2taddr(struct netconfig *, char *);
83__END_DECLS
84
85#endif  /* !_RPC_RPCB_CLNT_H */
Note: See TracBrowser for help on using the repository browser.