/usr/include/libpreludedb/preludedb.h is in libpreludedb-dev 1.0.0-2.1ubuntu1.
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 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 | /*****
*
* Copyright (C) 2003-2005 PreludeIDS Technologies. All Rights Reserved.
* Author: Nicolas Delon <nicolas.delon@prelude-ids.com>
*
* This file is part of the PreludeDB 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; see the file COPYING. If not, write to
* the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
*
*****/
#ifndef _LIBPRELUDEDB_H
#define _LIBPRELUDEDB_H
#include <libprelude/prelude-inttypes.h>
#include <libprelude/idmef.h>
#include "preludedb-sql-settings.h"
#include "preludedb-sql.h"
#include "preludedb-error.h"
#include "preludedb-path-selection.h"
#ifdef __cplusplus
extern "C" {
#endif
typedef struct preludedb preludedb_t;
typedef struct preludedb_result_idents preludedb_result_idents_t;
typedef struct preludedb_result_values preludedb_result_values_t;
typedef enum {
PRELUDEDB_RESULT_IDENTS_ORDER_BY_NONE = 0,
PRELUDEDB_RESULT_IDENTS_ORDER_BY_CREATE_TIME_DESC = 1,
PRELUDEDB_RESULT_IDENTS_ORDER_BY_CREATE_TIME_ASC = 2
} preludedb_result_idents_order_t;
#define PRELUDEDB_ERRBUF_SIZE 512
int preludedb_init(void);
void preludedb_deinit(void);
int preludedb_new(preludedb_t **db, preludedb_sql_t *sql, const char *format_name, char *errbuf, size_t size);
void preludedb_destroy(preludedb_t *db);
const char *preludedb_get_format_name(preludedb_t *db);
const char *preludedb_get_format_version(preludedb_t *db);
int preludedb_set_format(preludedb_t *db, const char *format_name);
preludedb_sql_t *preludedb_get_sql(preludedb_t *db);
void preludedb_result_idents_destroy(preludedb_result_idents_t *result);
int preludedb_result_idents_get_next(preludedb_result_idents_t *result, uint64_t *ident);
void preludedb_result_values_destroy(preludedb_result_values_t *result);
int preludedb_result_values_get_next(preludedb_result_values_t *result, idmef_value_t ***values);
char *preludedb_get_error(preludedb_t *db, preludedb_error_t error, char *errbuf, size_t size);
int preludedb_insert_message(preludedb_t *db, idmef_message_t *message);
int preludedb_get_alert_idents(preludedb_t *db, idmef_criteria_t *criteria,
int limit, int offset,
preludedb_result_idents_order_t order,
preludedb_result_idents_t **result);
int preludedb_get_heartbeat_idents(preludedb_t *db, idmef_criteria_t *criteria,
int limit, int offset,
preludedb_result_idents_order_t order,
preludedb_result_idents_t **result);
int preludedb_get_alert(preludedb_t *db, uint64_t ident, idmef_message_t **message);
int preludedb_get_heartbeat(preludedb_t *db, uint64_t ident, idmef_message_t **message);
int preludedb_delete_alert(preludedb_t *db, uint64_t ident);
ssize_t preludedb_delete_alert_from_list(preludedb_t *db, uint64_t *idents, size_t size);
ssize_t preludedb_delete_alert_from_result_idents(preludedb_t *db, preludedb_result_idents_t *result);
int preludedb_delete_heartbeat(preludedb_t *db, uint64_t ident);
ssize_t preludedb_delete_heartbeat_from_list(preludedb_t *db, uint64_t *idents, size_t size);
ssize_t preludedb_delete_heartbeat_from_result_idents(preludedb_t *db, preludedb_result_idents_t *result);
int preludedb_get_values(preludedb_t *db, preludedb_path_selection_t *path_selection,
idmef_criteria_t *criteria, prelude_bool_t distinct, int limit, int offset,
preludedb_result_values_t **result);
int preludedb_transaction_start(preludedb_t *db);
int preludedb_transaction_end(preludedb_t *db);
int preludedb_transaction_abort(preludedb_t *db);
#ifdef __cplusplus
}
#endif
#endif /* _LIBPRELUDEDB_H */
|