This file is indexed.

/usr/include/measurement_kit/common/aaa_base.hpp is in libmeasurement-kit-dev 0.7.1-2build1.

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
// Part of measurement-kit <https://measurement-kit.github.io/>.
// Measurement-kit is free software. See AUTHORS and LICENSE for more
// information on the copying conditions.
#ifndef MEASUREMENT_KIT_COMMON_AAA_BASE_HPP
#define MEASUREMENT_KIT_COMMON_AAA_BASE_HPP

// Portability definition and headers

#include <measurement_kit/portable/sys/types.h>

#include <measurement_kit/portable/netinet/in.h>
#include <measurement_kit/portable/netinet/tcp.h>
#include <measurement_kit/portable/arpa/inet.h>
#include <measurement_kit/portable/sys/socket.h>
#include <measurement_kit/portable/sys/time.h>
#include <measurement_kit/portable/netdb.h>

#include <measurement_kit/portable/strings.h>

// Note: standard headers with non-standard additions
#include <measurement_kit/portable/stdlib.h>
#include <measurement_kit/portable/time.h>

// Include ciso646 to make sure we have `and`, `or`, etc
#include <ciso646>

#endif