Don't enable dnsmasq IPSET functionality on 2.4 kernel
[tomato.git] / release / src / router / radvd / log.h
blobfadeceab12dcea2986dcdfeadc8b1599fc0d8325
1 /*
3 * Authors:
4 * Lars Fenneberg <lf@elemental.net>
6 * This software is Copyright 1996,1997 by the above mentioned author(s),
7 * All Rights Reserved.
9 * The license which is distributed with this software in the file COPYRIGHT
10 * applies to this software. If your distribution is missing this file, you
11 * may request it from <pekkas@netcore.fi>.
15 #define L_NONE 0
16 #define L_SYSLOG 1
17 #define L_STDERR 2
18 #define L_STDERR_SYSLOG 3
19 #define L_LOGFILE 4
21 #define LOG_TIME_FORMAT "%b %d %H:%M:%S"
23 int log_open(int, char *, char*, int);
24 void flog(int, char *, ...);
25 void dlog(int, int, char *, ...);
26 int log_close(void);
27 int log_reopen(void);
28 void set_debuglevel(int);
29 int get_debuglevel(void);