This file is indexed.

/usr/include/freebsd/rpc/xdr.h is in freebsd-glue 0.2.22.

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
#include_next <rpc/xdr.h>

#ifndef _FREEBSD_RPC_XDR_H
#define _FREEBSD_RPC_XDR_H

#include <sys/cdefs.h>

/*
 * These are XDR control operators
 */

#define        XDR_GET_BYTES_AVAIL     1
#define        XDR_PEEK                2
#define        XDR_SKIPBYTES           3

struct xdr_bytesrec {
	bool_t xc_is_last_record;
	size_t xc_num_avail;
};

typedef struct xdr_bytesrec xdr_bytesrec;

#define xdr_control(xdrs, req, op)	XDR_CONTROL(xdrs, req, op)

#endif