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/pmap_prot.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: pmap_prot.h,v 1.8 2000/06/02 22:57:55 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: @(#)pmap_prot.h 1.14 88/02/08 SMI 
   31  *      from: @(#)pmap_prot.h   2.1 88/07/29 4.0 RPCSRC
   32  * $FreeBSD$
   33  */
   34 
   35 /*
   36  * pmap_prot.h
   37  * Protocol for the local binder service, or pmap.
   38  *
   39  * Copyright (C) 1984, Sun Microsystems, Inc.
   40  *
   41  * The following procedures are supported by the protocol:
   42  *
   43  * PMAPPROC_NULL() returns ()
   44  *      takes nothing, returns nothing
   45  *
   46  * PMAPPROC_SET(struct portmap) returns (bool_t)
   47  *      TRUE is success, FALSE is failure.  Registers the tuple
   48  *      [prog, vers, prot, port].
   49  *
   50  * PMAPPROC_UNSET(struct portmap) returns (bool_t)
   51  *      TRUE is success, FALSE is failure.  Un-registers pair
   52  *      [prog, vers].  prot and port are ignored.
   53  *
   54  * PMAPPROC_GETPORT(struct portmap) returns (long unsigned).
   55  *      0 is failure.  Otherwise returns the port number where the pair
   56  *      [prog, vers] is registered.  It may lie!
   57  *
   58  * PMAPPROC_DUMP() RETURNS (struct pmaplist *)
   59  *
   60  * PMAPPROC_CALLIT(unsigned, unsigned, unsigned, string<>)
   61  *      RETURNS (port, string<>);
   62  * usage: encapsulatedresults = PMAPPROC_CALLIT(prog, vers, proc, encapsulatedargs);
   63  *      Calls the procedure on the local machine.  If it is not registered,
   64  *      this procedure is quite; ie it does not return error information!!!
   65  *      This procedure only is supported on rpc/udp and calls via
   66  *      rpc/udp.  This routine only passes null authentication parameters.
   67  *      This file has no interface to xdr routines for PMAPPROC_CALLIT.
   68  *
   69  * The service supports remote procedure calls on udp/ip or tcp/ip socket 111.
   70  */
   71 
   72 #ifndef _RPC_PMAP_PROT_H
   73 #define _RPC_PMAP_PROT_H
   74 #include <sys/cdefs.h>
   75 
   76 #define PMAPPORT                ((u_short)111)
   77 #define PMAPPROG                ((u_long)100000)
   78 #define PMAPVERS                ((u_long)2)
   79 #define PMAPVERS_PROTO          ((u_long)2)
   80 #define PMAPVERS_ORIG           ((u_long)1)
   81 #define PMAPPROC_NULL           ((u_long)0)
   82 #define PMAPPROC_SET            ((u_long)1)
   83 #define PMAPPROC_UNSET          ((u_long)2)
   84 #define PMAPPROC_GETPORT        ((u_long)3)
   85 #define PMAPPROC_DUMP           ((u_long)4)
   86 #define PMAPPROC_CALLIT         ((u_long)5)
   87 
   88 struct portmap {
   89         long unsigned pm_prog;
   90         long unsigned pm_vers;
   91         long unsigned pm_prot;
   92         long unsigned pm_port;
   93 };
   94 
   95 struct pmaplist {
   96         struct portmap  pml_map;
   97         struct pmaplist *pml_next;
   98 };
   99 
  100 __BEGIN_DECLS
  101 extern bool_t xdr_portmap(XDR *, struct portmap *);
  102 extern bool_t xdr_pmaplist(XDR *, struct pmaplist **);
  103 extern bool_t xdr_pmaplist_ptr(XDR *, struct pmaplist *);
  104 __END_DECLS
  105 
  106 #endif /* !_RPC_PMAP_PROT_H */

Cache object: 295a678310df88d74967c0178fa5bce1


[ 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.