/usr/include/libprelude/idmef.hxx is in libprelude-dev 4.1.0-4.
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 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 | /*****
*
* Copyright (C) 2009-2017 CS-SI. All Rights Reserved.
* Author: Yoann Vandoorselaere <yoannv@gmail.com>
*
* This file is part of the Prelude library.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*
*****/
#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_object_t *_object;
public:
~IDMEF();
IDMEF();
IDMEF(const char *json);
IDMEF(const IDMEF &idmef);
IDMEF(idmef_object_t *message);
IDMEF(std::istream &is);
void set(const char *path, const std::vector<Prelude::IDMEF> &value);
void set(const char *path, Prelude::IDMEF *value);
void set(const char *path, const std::vector<Prelude::IDMEFValue> &value);
void set(const char *path, const std::string &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, int32_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();
idmef_class_id_t getId() const;
const std::string toString() const;
const std::string toJSON() const;
operator const std::string() const;
operator idmef_object_t *() const;
IDMEF &operator = (const IDMEF &idmef);
int operator == (const IDMEF *idmef);
};
};
#endif /* __LIBPRELUDE_IDMEF_HXX */
|