File: medusa-trace.h

package info (click to toggle)
medusa 2.1.1-1
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 2,100 kB
  • ctags: 1,645
  • sloc: ansic: 18,157; sh: 8,548; makefile: 204; perl: 110
file content (46 lines) | stat: -rw-r--r-- 1,267 bytes parent folder | download | duplicates (5)
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
/*
 * Medusa Parallel Login Auditor
 *
 *    Copyright (C) 2006 Joe Mondloch
 *    JoMo-Kun / jmk@foofus.net
 *
 *    This program is free software; you can redistribute it and/or modify
 *    it under the terms of the GNU General Public License version 2,
 *    as published by the Free Software Foundation
 *
 *    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.
 *
 *    http://www.gnu.org/licenses/gpl.txt
 *
 *    This program is released under the GPL with the additional exemption
 *    that compiling, linking, and/or using OpenSSL is allowed.
 *
*/

#ifndef _MEDUSATRACE_H

#define VB_EXIT       0
#define VB_NONE       1
#define VB_NONE_FILE  2
#define VB_IMPORTANT  3
#define VB_FOUND      4
#define VB_CHECK      5
#define VB_GENERAL    6

#define ERR_FATAL     0
#define ERR_ALERT     1
#define ERR_CRITICAL  2
#define ERR_ERROR     3
#define ERR_WARNING   4
#define ERR_NOTICE    5
#define ERR_INFO      6
#define ERR_DEBUG     7
#define ERR_DEBUG_AUDIT    8
#define ERR_DEBUG_SERVER   9
#define ERR_DEBUG_MODULE   10

#define _MEDUSATRACE_H
#endif