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
|
/*
* Public domain
* syslog.h compatibility shim
*/
#ifndef _WIN32
#include_next <syslog.h>
#endif
#ifndef LIBCRYPTOCOMPAT_SYSLOG_H
#define LIBCRYPTOCOMPAT_SYSLOG_H
#ifndef HAVE_SYSLOG_R
#include <stdarg.h>
#ifdef _WIN32
#define LOG_CONS LOG_INFO
#define LOG_INFO 6 /* informational */
#define LOG_USER (1<<3) /* random user-level messages */
#define LOG_LOCAL2 (18<<3) /* reserved for local use */
#endif
struct syslog_data {
int log_stat;
const char *log_tag;
int log_fac;
int log_mask;
};
#define SYSLOG_DATA_INIT {0, (const char *)0, LOG_USER, 0xff}
void syslog_r(int, struct syslog_data *, const char *, ...);
void vsyslog_r(int, struct syslog_data *, const char *, va_list);
#endif
#endif
#ifdef _AIX
#ifdef HAVE_SYSLOG
#include <stdlib.h>
void vsyslog(int facility_priority, const char *format, va_list arglist) {
char *msg = NULL;
vasprintf(&msg, format, arglist);
if (!msg)
return;
syslog(facility_priority, "%s", msg);
free(msg);
}
#endif /* HAVE_SYSLOG */
void vsyslog_r(int pri, struct syslog_data *data, const char *fmt, va_list ap) {
vsyslog(pri, fmt, ap);
}
#endif /* AIX */
|