/* $NetBSD: pmap_prot.h,v 1.8 2000/06/02 22:57:55 fvdl Exp $ */12/*-3* SPDX-License-Identifier: BSD-3-Clause4*5* Copyright (c) 2009, Sun Microsystems, Inc.6* All rights reserved.7*8* Redistribution and use in source and binary forms, with or without9* modification, are permitted provided that the following conditions are met:10* - Redistributions of source code must retain the above copyright notice,11* this list of conditions and the following disclaimer.12* - Redistributions in binary form must reproduce the above copyright notice,13* this list of conditions and the following disclaimer in the documentation14* and/or other materials provided with the distribution.15* - Neither the name of Sun Microsystems, Inc. nor the names of its16* contributors may be used to endorse or promote products derived17* from this software without specific prior written permission.18*19* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"20* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE21* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE22* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE23* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR24* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF25* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS26* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN27* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)28* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE29* POSSIBILITY OF SUCH DAMAGE.30*/3132/*33* pmap_prot.h34* Protocol for the local binder service, or pmap.35*36* Copyright (C) 1984, Sun Microsystems, Inc.37*38* The following procedures are supported by the protocol:39*40* PMAPPROC_NULL() returns ()41* takes nothing, returns nothing42*43* PMAPPROC_SET(struct portmap) returns (bool_t)44* TRUE is success, FALSE is failure. Registers the tuple45* [prog, vers, prot, port].46*47* PMAPPROC_UNSET(struct portmap) returns (bool_t)48* TRUE is success, FALSE is failure. Un-registers pair49* [prog, vers]. prot and port are ignored.50*51* PMAPPROC_GETPORT(struct portmap) returns (long unsigned).52* 0 is failure. Otherwise returns the port number where the pair53* [prog, vers] is registered. It may lie!54*55* PMAPPROC_DUMP() RETURNS (struct pmaplist *)56*57* PMAPPROC_CALLIT(unsigned, unsigned, unsigned, string<>)58* RETURNS (port, string<>);59* usage: encapsulatedresults = PMAPPROC_CALLIT(prog, vers, proc, encapsulatedargs);60* Calls the procedure on the local machine. If it is not registered,61* this procedure is quite; ie it does not return error information!!!62* This procedure only is supported on rpc/udp and calls via63* rpc/udp. This routine only passes null authentication parameters.64* This file has no interface to xdr routines for PMAPPROC_CALLIT.65*66* The service supports remote procedure calls on udp/ip or tcp/ip socket 111.67*/6869#ifndef _RPC_PMAP_PROT_H70#define _RPC_PMAP_PROT_H71#include <sys/cdefs.h>7273#define PMAPPORT ((u_short)111)74#define PMAPPROG ((u_long)100000)75#define PMAPVERS ((u_long)2)76#define PMAPVERS_PROTO ((u_long)2)77#define PMAPVERS_ORIG ((u_long)1)78#define PMAPPROC_NULL ((u_long)0)79#define PMAPPROC_SET ((u_long)1)80#define PMAPPROC_UNSET ((u_long)2)81#define PMAPPROC_GETPORT ((u_long)3)82#define PMAPPROC_DUMP ((u_long)4)83#define PMAPPROC_CALLIT ((u_long)5)8485struct portmap {86long unsigned pm_prog;87long unsigned pm_vers;88long unsigned pm_prot;89long unsigned pm_port;90};9192struct pmaplist {93struct portmap pml_map;94struct pmaplist *pml_next;95};9697__BEGIN_DECLS98extern bool_t xdr_portmap(XDR *, struct portmap *);99extern bool_t xdr_pmaplist(XDR *, struct pmaplist **);100extern bool_t xdr_pmaplist_ptr(XDR *, struct pmaplist *);101__END_DECLS102103#endif /* !_RPC_PMAP_PROT_H */104105106