This file is indexed.

/usr/src/xtables-addons-2.3/compat_nfinetaddr.h is in xtables-addons-dkms 2.3-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
#ifndef _COMPAT_NFINETADDR_H
#define _COMPAT_NFINETADDR_H 1

#include <linux/in.h>
#include <linux/in6.h>

union nf_inet_addr {
	__be32 ip;
	__be32 ip6[4];
	struct in_addr in;
	struct in6_addr in6;
};

#endif /* _COMPAT_NFINETADDR_H */