This file is indexed.

/usr/include/upnp/UpnpInet.h is in libupnp4-dev 1.8.0~svn20100507-1.2.

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
#ifndef UPNPINET_H
#define UPNPINET_H


/*!
 * \file
 *
 * \brief Provides a platform independent way to include TCP/IP types and functions.
 */


#ifdef WIN32
	#include <winsock2.h>
	#include <Ws2tcpip.h>
#else
	#include <sys/param.h>
	#if (defined(BSD) && BSD >= 199306) || defined (__FreeBSD_kernel__)
		#include <ifaddrs.h>
		/* Do not move or remove the include below for "sys/socket"!
		 * Will break FreeBSD builds. */
		#include <sys/socket.h>
	#endif
	#include <netinet/in.h>
#endif


#endif /* UPNPINET_H */