aboutsummaryrefslogtreecommitdiffstats
path: root/src/log.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/log.h')
-rw-r--r--src/log.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/log.h b/src/log.h
index 81a95c4..ed0f6cb 100644
--- a/src/log.h
+++ b/src/log.h
@@ -12,6 +12,9 @@
/*
* $Log$
+ * Revision 1.7 2010/07/27 14:49:35 james
+ * add support for byte logging
+ *
* Revision 1.6 2008/03/10 11:49:33 james
* *** empty log message ***
*
@@ -38,6 +41,7 @@
#define LOG_SIGNATURE \
struct Log_struct *next; \
void (*log)(struct Log_struct *,char *); \
+ void (*log_bytes)(struct Log_struct *,void *,int); \
void (*sighup)(struct Log_struct *); \
void (*close)(struct Log_struct *)