/usr/include/libpreludedb/preludedb-path-selection.h is in libpreludedb-dev 1.0.0-2.3.
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 | /*****
*
* 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_OBJECT_SELECTION_H
#define _LIBPRELUDEDB_OBJECT_SELECTION_H
#ifdef __cplusplus
extern "C" {
#endif
typedef enum {
PRELUDEDB_SELECTED_OBJECT_FUNCTION_MIN = 0x01,
PRELUDEDB_SELECTED_OBJECT_FUNCTION_MAX = 0x02,
PRELUDEDB_SELECTED_OBJECT_FUNCTION_AVG = 0x04,
PRELUDEDB_SELECTED_OBJECT_FUNCTION_STD = 0x08,
PRELUDEDB_SELECTED_OBJECT_FUNCTION_COUNT = 0x10,
PRELUDEDB_SELECTED_OBJECT_GROUP_BY = 0x20,
PRELUDEDB_SELECTED_OBJECT_ORDER_ASC = 0x40,
PRELUDEDB_SELECTED_OBJECT_ORDER_DESC = 0x80
} preludedb_selected_path_flags_t;
typedef struct preludedb_path_selection preludedb_path_selection_t;
typedef struct preludedb_selected_path preludedb_selected_path_t;
int preludedb_selected_path_new(preludedb_selected_path_t **selected_path,
idmef_path_t *path, int flags);
int preludedb_selected_path_new_string(preludedb_selected_path_t **selected_path, const char *str);
void preludedb_selected_path_destroy(preludedb_selected_path_t *selected_path);
idmef_path_t *preludedb_selected_path_get_path(preludedb_selected_path_t *selected_path);
preludedb_selected_path_flags_t preludedb_selected_path_get_flags(preludedb_selected_path_t *selected_path);
int preludedb_path_selection_new(preludedb_path_selection_t **path_selection);
void preludedb_path_selection_destroy(preludedb_path_selection_t *path_selection);
void preludedb_path_selection_add(preludedb_path_selection_t *path_selection,
preludedb_selected_path_t *selected_path);
preludedb_selected_path_t *preludedb_path_selection_get_next(preludedb_path_selection_t *path_selection,
preludedb_selected_path_t *selected_path);
size_t preludedb_path_selection_get_count(preludedb_path_selection_t *path_selection);
#ifdef __cplusplus
}
#endif
#endif /* ! _LIBPRELUDEDB_OBJECT_SELECTION_H */
|