This file is indexed.

/usr/src/xtables-addons-2.12/extensions/xt_ipp2p.h is in xtables-addons-dkms 2.12-0.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
#ifndef __IPT_IPP2P_H
#define __IPT_IPP2P_H
#define IPP2P_VERSION "0.10"

enum {
	IPP2N_EDK,
	IPP2N_DATA_KAZAA,
	IPP2N_DATA_EDK,
	IPP2N_DATA_DC,
	IPP2N_DC,
	IPP2N_DATA_GNU,
	IPP2N_GNU,
	IPP2N_KAZAA,
	IPP2N_BIT,
	IPP2N_APPLE,
	IPP2N_SOUL,
	IPP2N_WINMX,
	IPP2N_ARES,
	IPP2N_MUTE,
	IPP2N_WASTE,
	IPP2N_XDCC,

	IPP2P_EDK        = 1 << IPP2N_EDK,
	IPP2P_DATA_KAZAA = 1 << IPP2N_DATA_KAZAA,
	IPP2P_DATA_EDK   = 1 << IPP2N_DATA_EDK,
	IPP2P_DATA_DC    = 1 << IPP2N_DATA_DC,
	IPP2P_DC         = 1 << IPP2N_DC,
	IPP2P_DATA_GNU   = 1 << IPP2N_DATA_GNU,
	IPP2P_GNU        = 1 << IPP2N_GNU,
	IPP2P_KAZAA      = 1 << IPP2N_KAZAA,
	IPP2P_BIT        = 1 << IPP2N_BIT,
	IPP2P_APPLE      = 1 << IPP2N_APPLE,
	IPP2P_SOUL       = 1 << IPP2N_SOUL,
	IPP2P_WINMX      = 1 << IPP2N_WINMX,
	IPP2P_ARES       = 1 << IPP2N_ARES,
	IPP2P_MUTE       = 1 << IPP2N_MUTE,
	IPP2P_WASTE      = 1 << IPP2N_WASTE,
	IPP2P_XDCC       = 1 << IPP2N_XDCC,
};

struct ipt_p2p_info {
    int cmd;
    int debug;
};

#endif //__IPT_IPP2P_H