The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/rpc/rpc.h

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 /*      $NetBSD: rpc.h,v 1.13 2000/06/02 22:57:56 fvdl Exp $    */
    2 
    3 /*-
    4  * Copyright (c) 2009, Sun Microsystems, Inc.
    5  * All rights reserved.
    6  *
    7  * Redistribution and use in source and binary forms, with or without 
    8  * modification, are permitted provided that the following conditions are met:
    9  * - Redistributions of source code must retain the above copyright notice, 
   10  *   this list of conditions and the following disclaimer.
   11  * - Redistributions in binary form must reproduce the above copyright notice, 
   12  *   this list of conditions and the following disclaimer in the documentation 
   13  *   and/or other materials provided with the distribution.
   14  * - Neither the name of Sun Microsystems, Inc. nor the names of its 
   15  *   contributors may be used to endorse or promote products derived 
   16  *   from this software without specific prior written permission.
   17  * 
   18  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 
   19  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 
   20  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 
   21  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE 
   22  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 
   23  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 
   24  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 
   25  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 
   26  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 
   27  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 
   28  * POSSIBILITY OF SUCH DAMAGE.
   29  *
   30  *      from: @(#)rpc.h 1.9 88/02/08 SMI
   31  *      from: @(#)rpc.h 2.4 89/07/11 4.0 RPCSRC
   32  * $FreeBSD$
   33  */
   34 
   35 /*
   36  * rpc.h, Just includes the billions of rpc header files necessary to
   37  * do remote procedure calling.
   38  *
   39  * Copyright (C) 1984, Sun Microsystems, Inc.
   40  */
   41 #ifndef _RPC_RPC_H
   42 #define _RPC_RPC_H
   43 
   44 #include <rpc/types.h>          /* some typedefs */
   45 #include <sys/socket.h>
   46 #include <netinet/in.h>
   47 
   48 /* external data representation interfaces */
   49 #include <rpc/xdr.h>            /* generic (de)serializer */
   50 
   51 /* Client side only authentication */
   52 #include <rpc/auth.h>           /* generic authenticator (client side) */
   53 
   54 /* Client side (mostly) remote procedure call */
   55 #include <rpc/clnt.h>           /* generic rpc stuff */
   56 
   57 /* semi-private protocol headers */
   58 #include <rpc/rpc_msg.h>        /* protocol for rpc messages */
   59 
   60 #ifndef _KERNEL
   61 #include <rpc/auth_unix.h>      /* protocol for unix style cred */
   62 /*
   63  *  Uncomment-out the next line if you are building the rpc library with
   64  *  DES Authentication (see the README file in the secure_rpc/ directory).
   65  */
   66 #include <rpc/auth_des.h>       /* protocol for des style cred */
   67 #endif
   68 
   69 /* Server side only remote procedure callee */
   70 #include <rpc/svc.h>            /* service manager and multiplexer */
   71 #include <rpc/svc_auth.h>       /* service side authenticator */
   72 
   73 #ifndef _KERNEL
   74 /* Portmapper client, server, and protocol headers */
   75 #include <rpc/pmap_clnt.h>
   76 #endif
   77 #include <rpc/pmap_prot.h>
   78 
   79 #include <rpc/rpcb_clnt.h>      /* rpcbind interface functions */
   80 
   81 #ifndef _KERNEL
   82 #include <rpc/rpcent.h>
   83 #endif
   84 
   85 #ifndef UDPMSGSIZE
   86 #define UDPMSGSIZE 8800
   87 #endif
   88 
   89 __BEGIN_DECLS
   90 extern int get_myaddress(struct sockaddr_in *);
   91 #ifndef _KERNEL
   92 extern int bindresvport(int, struct sockaddr_in *);
   93 #endif
   94 extern int registerrpc(int, int, int, char *(*)(char [UDPMSGSIZE]),
   95     xdrproc_t, xdrproc_t);
   96 extern int callrpc(const char *, int, int, int, xdrproc_t, void *,
   97     xdrproc_t , void *);
   98 extern int getrpcport(char *, int, int, int);
   99 
  100 char *taddr2uaddr(const struct netconfig *, const struct netbuf *);
  101 struct netbuf *uaddr2taddr(const struct netconfig *, const char *);
  102 
  103 struct sockaddr;
  104 extern int bindresvport_sa(int, struct sockaddr *);
  105 __END_DECLS
  106 
  107 /*
  108  * The following are not exported interfaces, they are for internal library
  109  * and rpcbind use only. Do not use, they may change without notice.
  110  */
  111 __BEGIN_DECLS
  112 #ifndef _KERNEL
  113 int __rpc_nconf2fd(const struct netconfig *);
  114 int __rpc_nconf2sockinfo(const struct netconfig *, struct __rpc_sockinfo *);
  115 int __rpc_fd2sockinfo(int, struct __rpc_sockinfo *);
  116 #else
  117 struct socket *__rpc_nconf2socket(const struct netconfig *);
  118 int __rpc_nconf2sockinfo(const struct netconfig *, struct __rpc_sockinfo *);
  119 int __rpc_socket2sockinfo(struct socket *, struct __rpc_sockinfo *);
  120 #endif
  121 u_int __rpc_get_t_size(int, int, int);
  122 __END_DECLS
  123 
  124 #endif /* !_RPC_RPC_H */

Cache object: 9ef4567145c7f122acb2f6f1507ecd3b


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.