~ubuntu-branches/ubuntu/maverick/audit/maverick

« back to all changes in this revision

Viewing changes to new_audispd/audispd-builtins.h

  • Committer: Bazaar Package Importer
  • Author(s): Mathias Gug
  • Date: 2007-06-29 13:05:14 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20070629130514-z798cz4lebiahj5w
Tags: 1.5.4-0ubuntu1
* New upstream version.
* debian/patches/audit-1.5.1-dist.patch:
  * update so that it applies for 1.5.4.
* debian/control:
  * update Maintainer and XSBC-Original-Maintainer fields.
* debian/rules:
  * enable apparmor support: add --with-apparmor to configure options.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
* audispd-builtins.h - Minimal linked list library
 
3
* Copyright (c) 2007 Red Hat Inc., Durham, North Carolina.
 
4
* All Rights Reserved. 
 
5
*
 
6
* This software may be freely redistributed and/or modified under the
 
7
* terms of the GNU General Public License as published by the Free
 
8
* Software Foundation; either version 2, or (at your option) any
 
9
* later version.
 
10
*
 
11
* This program is distributed in the hope that it will be useful,
 
12
* but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
* GNU General Public License for more details.
 
15
*
 
16
* You should have received a copy of the GNU General Public License
 
17
* along with this program; see the file COPYING. If not, write to the
 
18
* Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
19
*
 
20
* Authors:
 
21
*   Steve Grubb <sgrubb@redhat.com>
 
22
*/
 
23
 
 
24
#ifndef AUDISPD_BUILTINS_HEADER
 
25
#define AUDISPD_BUILTINS_HEADER
 
26
 
 
27
#include "queue.h"
 
28
 
 
29
void start_builtin(plugin_conf_t *conf);
 
30
void send_af_unix(const char *s);
 
31
void destroy_af_unix(void);
 
32
void send_syslog(const char *s);
 
33
void destroy_syslog(void);
 
34
 
 
35
#endif
 
36