This file is indexed.

/usr/include/ntirpc/rpc/rpc_dplx.h is in libntirpc-dev 1.4.4-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
/*
 * Copyright (c) 2012 Linux Box Corporation.
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
 *
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR `AS IS'' AND ANY EXPRESS OR
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */

#ifndef RPC_DPLX_H
#define RPC_DPLX_H

/* SVCXPRT variants */

/* slx: send lock xprt */
#define rpc_dplx_slx(xprt) \
	rpc_dplx_slxi(xprt, __func__, __LINE__)

/* slxi: send lock xprt impl */
void rpc_dplx_slxi(SVCXPRT *xprt, const char *file, int line);

/* sux: send unlock xprt */
void rpc_dplx_sux(SVCXPRT *xprt);

/* rlx: recv lock xprt */
#define rpc_dplx_rlx(xprt) \
	rpc_dplx_rlxi(xprt, __func__, __LINE__)

/* rlxi: recv lock xprt impl */
void rpc_dplx_rlxi(SVCXPRT *xprt, const char *file, int line);

/* rux: recv unlock xprt */
void rpc_dplx_rux(SVCXPRT *xprt);

/* CLIENT variants */

/* slc: send lock clnt */
#define rpc_dplx_slc(clnt) \
	rpc_dplx_slci(clnt, __func__, __LINE__)

/* slci: send lock clnt impl */
void rpc_dplx_slci(CLIENT *clnt, const char *file, int line);

/* suc: send unlock clnt */
void rpc_dplx_suc(CLIENT *clnt);

/* rlc: recv lock clnt */
#define rpc_dplx_rlc(clnt) \
	rpc_dplx_rlci(clnt, __func__, __LINE__)

/* rlci: recv lock clnt impl */
void rpc_dplx_rlci(CLIENT *clnt, const char *file, int line);

/* ruc: recv unlock clnt */
void rpc_dplx_ruc(CLIENT *client);

/* fd variants--these interfaces should be used only when NO OTHER
 * APPROACH COULD WORK.  Please. */

/* slf: send lock fd */
#define rpc_dplx_slf(fd) \
	rpc_dplx_slfi(fd, __func__, __LINE__)

/* slfi: send lock fd impl */
void rpc_dplx_slfi(int fd, const char *file, int line);

/* suf: send unlock fd */
void rpc_dplx_suf(int fd);

/* rlf: recv lock fd */
#define rpc_dplx_rlf(fd) \
	rpc_dplx_rlfi(fd, __func__, __LINE__)

/* rlfi: recv lock fd impl */
void rpc_dplx_rlfi(int fd, const char *file, int line);

/* ruf: recv unlock fd */
void rpc_dplx_ruf(int fd);

#endif				/* RPC_DPLX_H */