This file is indexed.

/usr/lib/klibc/include/arpa/inet.h is in libklibc-dev 2.0.3-0ubuntu1.

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

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
/*
 * arpa/inet.h
 */

#ifndef _ARPA_INET_H
#define _ARPA_INET_H

#include <klibc/extern.h>
#include <stdint.h>
#include <sys/types.h>
#include <netinet/in.h>
#include <netinet/in6.h>

__extern uint32_t inet_addr(const char *);
__extern int inet_aton(const char *, struct in_addr *);
__extern char *inet_ntoa(struct in_addr);
__extern int inet_pton(int, const char *, void *);
__extern const char *inet_ntop(int, const void *, char *, size_t);
__extern unsigned int inet_nsap_addr(const char *, unsigned char *, int);
__extern char *inet_nsap_ntoa(int, const unsigned char *, char *);

#endif				/* _ARPA_INET_H */