summaryrefslogtreecommitdiffstats
path: root/ulogd/ulogd.c
diff options
context:
space:
mode:
authorlaforge <laforge>2000-09-12 13:43:34 +0000
committerlaforge <laforge>2000-09-12 13:43:34 +0000
commitafc217efb583f0a4afa4efb63cb4cc0e6b62ebc4 (patch)
tree9b6eead5894cbe7fbc082cef399a8eba581253e0 /ulogd/ulogd.c
parent0d41339e258209d89bd0c1500ab7835bc48775bd (diff)
ulogd_log now a function
Diffstat (limited to 'ulogd/ulogd.c')
-rw-r--r--ulogd/ulogd.c19
1 files changed, 14 insertions, 5 deletions
diff --git a/ulogd/ulogd.c b/ulogd/ulogd.c
index 1d3ba70..1e8d255 100644
--- a/ulogd/ulogd.c
+++ b/ulogd/ulogd.c
@@ -1,4 +1,4 @@
-/* ulogd, Version $Revision: 1.7 $
+/* ulogd, Version $Revision: 1.8 $
*
* first try of a logging daemon for my netfilter ULOG target
* for the linux 2.4 netfilter subsystem.
@@ -7,12 +7,14 @@
*
* this code is released under the terms of GNU GPL
*
- * $Id: ulogd.c,v 1.7 2000/09/09 18:35:26 laforge Exp $
+ * $Id: ulogd.c,v 1.8 2000/09/09 21:55:46 laforge Exp $
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
+#include <stdarg.h>
+#include <time.h>
#include <dlfcn.h>
#include <sys/types.h>
#include <dirent.h>
@@ -138,13 +140,20 @@ void free_ret(ulog_iret_t *ret)
}
}
-void ulogd_log(int level, const char *message)
+void ulogd_log(int level, const char *format, ...)
{
char *timestr;
+ va_list ap;
+ time_t tm;
- timestr = ctime(time());
- fprintf(logfile, "%s <%1.1d> %s\n", timestr, level, message);
+ va_start(ap, format);
+ tm = time(NULL);
+ timestr = ctime(&tm);
+ fprintf(logfile, "%s <%1.1d>", timestr, level);
+
+ vfprintf(logfile, format, ap);
+ va_end(ap);
}
/* this should pass the result(s) to one or more registered output plugins,
* but is currently only printing them out */