]> git.ipfire.org Git - thirdparty/glibc.git/blame - sunrpc/pmap_prot.c
Break lines before not after operators, batch 4.
[thirdparty/glibc.git] / sunrpc / pmap_prot.c
CommitLineData
28f540f4 1/*
a7ab6ec8
UD
2 * pmap_prot.c
3 * Protocol for the local binder service, or pmap.
ab09b221 4 *
a7ab6ec8 5 * Copyright (c) 2010, Oracle America, Inc.
ab09b221 6 *
a7ab6ec8
UD
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions are
9 * met:
cb636bb2 10 *
a7ab6ec8
UD
11 * * Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * * Redistributions in binary form must reproduce the above
14 * copyright notice, this list of conditions and the following
15 * disclaimer in the documentation and/or other materials
16 * provided with the distribution.
17 * * Neither the name of the "Oracle America, Inc." nor the names of its
18 * contributors may be used to endorse or promote products derived
19 * from this software without specific prior written permission.
cb636bb2 20 *
a7ab6ec8
UD
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
24 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
25 * COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
26 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
28 * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
29 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
30 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
31 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
32 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28f540f4
RM
33 */
34
35#include <rpc/types.h>
36#include <rpc/xdr.h>
37#include <rpc/pmap_prot.h>
82f43dd2 38#include <shlib-compat.h>
28f540f4
RM
39
40
41bool_t
9d46370c 42xdr_pmap (XDR *xdrs, struct pmap *regs)
28f540f4
RM
43{
44
7b57bfe5
UD
45 if (xdr_u_long (xdrs, &regs->pm_prog) &&
46 xdr_u_long (xdrs, &regs->pm_vers) &&
47 xdr_u_long (xdrs, &regs->pm_prot))
48 return xdr_u_long (xdrs, &regs->pm_port);
e7fd8a39 49 return FALSE;
28f540f4 50}
021db4be 51libc_hidden_nolink_sunrpc (xdr_pmap, GLIBC_2_0)