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
|
/*
* names.c - syslogd implementation for windows, syslog priority
* and facility names
*
* Created by Alexander Yaworsky
*
* THIS SOFTWARE IS NOT COPYRIGHTED
*
* This source code is offered for use in the public domain. You may
* use, modify or distribute it freely.
*
* This code is distributed in the hope that it will be useful but
* WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY
* DISCLAIMED. This includes but is not limited to warranties of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
*/
#include <stdio.h>
#define SYSLOG_NAMES
#include <syslog.h>
char* get_priority_name( int pri )
{
static char *names[] = {
"emerg",
"alert",
"crit",
"error",
"warning",
"notice",
"info",
"debug"
};
return names[ pri ];
}
char* get_facility_name( int fac )
{
static char *names[] = {
"kern",
"user",
"mail",
"daemon",
"auth",
"syslog",
"lpr",
"news",
"uucp",
"cron",
"authpriv",
"ftp",
"",
"",
"",
"",
"local0",
"local1",
"local2",
"local3",
"local4",
"local5",
"local6",
"local7"
};
return names[ fac ];
}
|