18360efbdSAlfred Perlstein /* $NetBSD: pmap_clnt.h,v 1.9 2000/06/02 22:57:55 fvdl Exp $ */ 28360efbdSAlfred Perlstein 32e322d37SHiroki Sato /*- 4*2321c474SPedro F. Giffuni * SPDX-License-Identifier: BSD-3-Clause 5*2321c474SPedro F. Giffuni * 62e322d37SHiroki Sato * Copyright (c) 2009, Sun Microsystems, Inc. 72e322d37SHiroki Sato * All rights reserved. 8dba7a33eSGarrett Wollman * 92e322d37SHiroki Sato * Redistribution and use in source and binary forms, with or without 102e322d37SHiroki Sato * modification, are permitted provided that the following conditions are met: 112e322d37SHiroki Sato * - Redistributions of source code must retain the above copyright notice, 122e322d37SHiroki Sato * this list of conditions and the following disclaimer. 132e322d37SHiroki Sato * - Redistributions in binary form must reproduce the above copyright notice, 142e322d37SHiroki Sato * this list of conditions and the following disclaimer in the documentation 152e322d37SHiroki Sato * and/or other materials provided with the distribution. 162e322d37SHiroki Sato * - Neither the name of Sun Microsystems, Inc. nor the names of its 172e322d37SHiroki Sato * contributors may be used to endorse or promote products derived 182e322d37SHiroki Sato * from this software without specific prior written permission. 19dba7a33eSGarrett Wollman * 202e322d37SHiroki Sato * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 212e322d37SHiroki Sato * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 222e322d37SHiroki Sato * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 232e322d37SHiroki Sato * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE 242e322d37SHiroki Sato * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 252e322d37SHiroki Sato * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 262e322d37SHiroki Sato * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 272e322d37SHiroki Sato * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 282e322d37SHiroki Sato * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 292e322d37SHiroki Sato * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 302e322d37SHiroki Sato * POSSIBILITY OF SUCH DAMAGE. 31dba7a33eSGarrett Wollman */ 32dba7a33eSGarrett Wollman 33dba7a33eSGarrett Wollman /* 34dba7a33eSGarrett Wollman * pmap_clnt.h 35dba7a33eSGarrett Wollman * Supplies C routines to get to portmap services. 36dba7a33eSGarrett Wollman * 37dba7a33eSGarrett Wollman * Copyright (C) 1984, Sun Microsystems, Inc. 38dba7a33eSGarrett Wollman */ 39dba7a33eSGarrett Wollman 40dba7a33eSGarrett Wollman /* 41dba7a33eSGarrett Wollman * Usage: 42dba7a33eSGarrett Wollman * success = pmap_set(program, version, protocol, port); 43dba7a33eSGarrett Wollman * success = pmap_unset(program, version); 44dba7a33eSGarrett Wollman * port = pmap_getport(address, program, version, protocol); 45dba7a33eSGarrett Wollman * head = pmap_getmaps(address); 46dba7a33eSGarrett Wollman * clnt_stat = pmap_rmtcall(address, program, version, procedure, 47dba7a33eSGarrett Wollman * xdrargs, argsp, xdrres, resp, tout, port_ptr) 48dba7a33eSGarrett Wollman * (works for udp only.) 49dba7a33eSGarrett Wollman * clnt_stat = clnt_broadcast(program, version, procedure, 50dba7a33eSGarrett Wollman * xdrargs, argsp, xdrres, resp, eachresult) 51dba7a33eSGarrett Wollman * (like pmap_rmtcall, except the call is broadcasted to all 52dba7a33eSGarrett Wollman * locally connected nets. For each valid response received, 53dba7a33eSGarrett Wollman * the procedure eachresult is called. Its form is: 54dba7a33eSGarrett Wollman * done = eachresult(resp, raddr) 55dba7a33eSGarrett Wollman * bool_t done; 56dba7a33eSGarrett Wollman * caddr_t resp; 57dba7a33eSGarrett Wollman * struct sockaddr_in raddr; 58dba7a33eSGarrett Wollman * where resp points to the results of the call and raddr is the 59dba7a33eSGarrett Wollman * address if the responder to the broadcast. 60dba7a33eSGarrett Wollman */ 61dba7a33eSGarrett Wollman 628360efbdSAlfred Perlstein #ifndef _RPC_PMAP_CLNT_H_ 638360efbdSAlfred Perlstein #define _RPC_PMAP_CLNT_H_ 6486b9a9ccSGarrett Wollman #include <sys/cdefs.h> 6586b9a9ccSGarrett Wollman 6686b9a9ccSGarrett Wollman __BEGIN_DECLS 67bb28f3c2SWarner Losh extern bool_t pmap_set(u_long, u_long, int, int); 68bb28f3c2SWarner Losh extern bool_t pmap_unset(u_long, u_long); 69bb28f3c2SWarner Losh extern struct pmaplist *pmap_getmaps(struct sockaddr_in *); 70bb28f3c2SWarner Losh extern enum clnt_stat pmap_rmtcall(struct sockaddr_in *, 7186b9a9ccSGarrett Wollman u_long, u_long, u_long, 7286b9a9ccSGarrett Wollman xdrproc_t, caddr_t, 7386b9a9ccSGarrett Wollman xdrproc_t, caddr_t, 74bb28f3c2SWarner Losh struct timeval, u_long *); 75bb28f3c2SWarner Losh extern enum clnt_stat clnt_broadcast(u_long, u_long, u_long, 76f249dbccSDag-Erling Smørgrav xdrproc_t, void *, 77f249dbccSDag-Erling Smørgrav xdrproc_t, void *, 78bb28f3c2SWarner Losh resultproc_t); 79bb28f3c2SWarner Losh extern u_short pmap_getport(struct sockaddr_in *, 80bb28f3c2SWarner Losh u_long, u_long, u_int); 8186b9a9ccSGarrett Wollman __END_DECLS 8286b9a9ccSGarrett Wollman 838360efbdSAlfred Perlstein #endif /* !_RPC_PMAP_CLNT_H_ */ 84