~ubuntu-branches/ubuntu/hardy/syslog-ng/hardy

« back to all changes in this revision

Viewing changes to src/dgroup.h

  • Committer: Bazaar Package Importer
  • Author(s): SZALAY Attila
  • Date: 2006-05-25 11:21:50 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20060525112150-b18srkxcrz980xi9
Tags: 1.9.11-1
* New upstream version
  - Fixed log facility and priority detecting. (Closes: #350120, #350344, #357071, #367256)
* Added bison to Build-Dependency. (Closes: #368765)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (c) 2002, 2003, 2004 BalaBit IT Ltd, Budapest, Hungary
 
3
 *
 
4
 * This program is free software; you can redistribute it and/or modify it
 
5
 * under the terms of the GNU General Public License version 2 as published
 
6
 * by the Free Software Foundation.
 
7
 *
 
8
 * Note that this permission is granted for only version 2 of the GPL.
 
9
 *
 
10
 * As an additional exemption you are allowed to compile & link against the
 
11
 * OpenSSL libraries as published by the OpenSSL project. See the file
 
12
 * COPYING for details.
 
13
 *
 
14
 * This program is distributed in the hope that it will be useful,
 
15
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
16
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
17
 * GNU General Public License for more details.
 
18
 *
 
19
 * You should have received a copy of the GNU General Public License
 
20
 * along with this program; if not, write to the Free Software
 
21
 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
22
 */
 
23
 
 
24
#ifndef DGROUP_H_INCLUDED
 
25
#define DGROUP_H_INCLUDED
 
26
 
 
27
#include "syslog-ng.h"
 
28
#include "logpipe.h"
 
29
#include "driver.h"
 
30
 
 
31
 
 
32
typedef struct _LogDestGroup
 
33
{
 
34
  LogPipe super;
 
35
  GString *name;
 
36
  LogDriver *drivers;
 
37
  guint32 *processed_messages;
 
38
} LogDestGroup;
 
39
 
 
40
#define log_dgrp_ref(s)     ((LogDestGroup *) log_pipe_ref((LogPipe *) s))
 
41
#define log_dgrp_unref(s)   log_pipe_unref((LogPipe *) s)
 
42
 
 
43
LogDestGroup *log_dest_group_new(gchar *name, LogDriver *drivers);
 
44
 
 
45
#endif