This file is indexed.

/usr/include/measurement_kit/dns/query_class.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
28
29
// 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_DNS_QUERY_CLASS_HPP
#define MEASUREMENT_KIT_DNS_QUERY_CLASS_HPP

#include <measurement_kit/dns/qctht_.hpp>

namespace mk {
namespace dns {

#define MK_DNS_CLASS_IDS                                                       \
    XX(INVALID) /* Must be first */                                            \
    XX(IN)                                                                     \
    XX(CS)                                                                     \
    XX(CH)                                                                     \
    XX(HS)

#define XX(_name) MK_DNS_CLASS_##_name,
enum QueryClassId { MK_DNS_CLASS_IDS };
#undef XX

QueryClassId query_class_ids_(std::string s);

using QueryClass = qctht_<QueryClassId, query_class_ids_>;

} // namespace dns
} // namespace mk
#endif