forked from PhirePhly/aprx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hlog.h
67 lines (52 loc) · 2.03 KB
/
hlog.h
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
/********************************************************************
* APRX -- 2nd generation APRS-i-gate with *
* minimal requirement of esoteric facilities or *
* libraries of any kind beyond UNIX system libc. *
* *
* (c) Matti Aarnio - OH2MQK, 2007-2014 *
* *
********************************************************************/
/*
* Some parts of this code are copied from:
*
* aprsc
*
* (c) Heikki Hannikainen, OH7LZB <hessu@hes.iki.fi>
*
* This program is licensed under the BSD license, which can be found
* in the file LICENSE.
*
*/
#ifndef LOG_H
#define LOG_H
#define LOG_LEN 2048
#define L_STDERR 1 /* Log to stderror */
#define L_SYSLOG (1 << 1) /* Log to syslog */
#define L_FILE (1 << 2) /* Log to a file */
#ifdef __CYGWIN__
#define L_DEFDEST L_FILE
#else
#define L_DEFDEST L_STDERR
#endif
#define LOG_LEVELS "emerg alert crit err warning notice info debug"
#define LOG_DESTS "syslog stderr file"
#include <syslog.h>
extern char *log_levelnames[];
extern char *log_destnames[];
extern int log_dest; /* Logging destination */
extern int log_level; /* Logging level */
extern char *log_dir; /* Log directory */
extern int log_rotate_size; /* Rotate log when it reaches a given size */
extern int log_rotate_num; /* How many logs to keep around */
extern char *str_append(char *s, const char *fmt, ...);
extern int pick_loglevel(char *s, char **names);
extern int open_log(char *name, int reopen);
extern int close_log(int reopen);
extern int hlog(int priority, const char *fmt, ...);
extern int hlog_packet(int priority, const char *packet, int packetlen, const char *fmt, ...);
extern int accesslog_open(char *logd, int reopen);
extern int accesslog_close(char *reopenpath);
extern int accesslog(const char *fmt, ...);
extern int writepid(char *name);
extern int closepid(void);
#endif