This file is indexed.

/usr/include/libprelude/idmef.hxx is in libprelude-dev 1.0.0-11.9.

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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#ifndef _LIBPRELUDE_IDMEF_HXX
#define _LIBPRELUDE_IDMEF_HXX

#include <string>
#include <iostream>
#include "idmef-value.hxx"
#include "idmef-time.hxx"

namespace Prelude
{
        class IDMEF;
}

std::ostream & operator <<(std::ostream &os, const Prelude::IDMEF &idmef);
std::istream & operator >>(std::istream &is, Prelude::IDMEF &idmef);

namespace Prelude {
        class Client;

        class IDMEF {
                friend std::ostream & ::operator <<(std::ostream &os, const IDMEF &idmef);
                friend std::istream & ::operator >>(std::istream &is, IDMEF &idmef);

            protected:
                idmef_message_t *_message;

            public:
                ~IDMEF();
                IDMEF();
                IDMEF(const IDMEF &idmef);
                IDMEF(idmef_message_t *message);

                void Set(const char *path, std::vector<Prelude::IDMEFValue> value);
                void Set(const char *path, Prelude::IDMEFValue *value);
                void Set(const char *path, Prelude::IDMEFValue &value);
                void Set(const char *path, Prelude::IDMEFTime &value);
                void Set(const char *path, const char *value);
                void Set(const char *path, std::string value);
                void Set(const char *path, int8_t value);
                void Set(const char *path, uint8_t value);
                void Set(const char *path, int16_t value);
                void Set(const char *path, uint16_t value);
                void Set(const char *path, int32_t value);
                void Set(const char *path, uint32_t value);
                void Set(const char *path, int64_t value);
                void Set(const char *path, uint64_t value);
                void Set(const char *path, float value);
                void Set(const char *path, double value);
                Prelude::IDMEFValue Get(const char *path);

#ifndef SWIG
                size_t _genericWrite(int (write_cb)(prelude_msgbuf_t *msgbuf, prelude_msg_t *msg), void *fd_data) const;
                void _genericRead(ssize_t (read_cb)(prelude_io_t *fd, void *buf, size_t size), void *fd_data);
#endif

                IDMEF Clone(const IDMEF &idmef);
                const std::string ToString() const;

                operator const std::string() const;
                operator idmef_message_t *() const;
                IDMEF &operator = (const IDMEF &idmef);
        };
};

#endif /* __LIBPRELUDE_IDMEF_HXX */