| Server IP : 216.92.14.13 / Your IP : 216.73.216.171 Web Server : Apache System : Linux vps4089.pairvps.com 5.15.0-190-generic #200-Ubuntu SMP Fri Aug 7 15:06:04 UTC 2026 x86_64 User : rmlac2fmr ( 1040637) PHP Version : 8.2.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/local/include/syslog-ng/ |
Upload File : |
/*
* Copyright (c) 2011-2012 BalaBit IT Ltd, Budapest, Hungary
* Copyright (c) 2011-2012 Gergely Nagy <algernon@balabit.hu>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
* As an additional exemption you are allowed to compile & link against the
* OpenSSL libraries as published by the OpenSSL project. See the file
* COPYING for details.
*
*/
#ifndef VALUE_PAIRS_H_INCLUDED
#define VALUE_PAIRS_H_INCLUDED 1
#include "syslog-ng.h"
#include "nvtable.h"
typedef struct _ValuePairs ValuePairs;
typedef gboolean (*VPForeachFunc)(const gchar *name, const gchar *value, gpointer user_data);
typedef gboolean (*VPWalkValueCallbackFunc)(const gchar *name, const gchar *prefix,
const gchar *value,
gpointer *prefix_data, gpointer user_data);
typedef gboolean (*VPWalkCallbackFunc)(const gchar *name,
const gchar *prefix, gpointer *prefix_data,
const gchar *prev, gpointer *prev_data,
gpointer user_data);
gboolean value_pairs_add_scope(ValuePairs *vp, const gchar *scope);
void value_pairs_add_glob_pattern(ValuePairs *vp, const gchar *pattern, gboolean include);
void value_pairs_add_pair(ValuePairs *vp, GlobalConfig *cfg, const gchar *key, const gchar *value);
void value_pairs_add_transforms(ValuePairs *vp, gpointer vpts);
void value_pairs_foreach_sorted(ValuePairs *vp, VPForeachFunc func,
GCompareDataFunc compare_func,
LogMessage *msg, gint32 seq_num,
gpointer user_data);
void value_pairs_foreach(ValuePairs *vp, VPForeachFunc func,
LogMessage *msg, gint32 seq_num,
gpointer user_data);
void value_pairs_walk(ValuePairs *vp,
VPWalkCallbackFunc obj_start_func,
VPWalkValueCallbackFunc process_value_func,
VPWalkCallbackFunc obj_end_func,
LogMessage *msg, gint32 seq_num,
gpointer user_data);
ValuePairs *value_pairs_new(void);
void value_pairs_free(ValuePairs *vp);
ValuePairs *value_pairs_new_from_cmdline(GlobalConfig *cfg,
gint argc, gchar **argv,
GError **error);
#endif