aboutsummaryrefslogtreecommitdiffstats
path: root/ringbuffer.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2006-04-29 17:54:46 +0000
committerGuy Harris <guy@alum.mit.edu>2006-04-29 17:54:46 +0000
commit25e8c37489cf6503e7ce8c436f19f54bf7a5027a (patch)
treedcbe91c747f03f35df391a14e4fdf728623dbffe /ringbuffer.h
parentf3d1963924c0b88d7a47c983f3bc3d98273a9e7b (diff)
Have the ring buffer routines take a pointer to a "bytes written" count
as an argument, rather than keeping the count to themselves, so the count kept by the capturing program can be updated correctly - including getting reset when files are switched. Fixes bug 895. svn path=/trunk/; revision=18032
Diffstat (limited to 'ringbuffer.h')
-rw-r--r--ringbuffer.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/ringbuffer.h b/ringbuffer.h
index 8989f5c4aa..63af28bce9 100644
--- a/ringbuffer.h
+++ b/ringbuffer.h
@@ -40,8 +40,10 @@
int ringbuf_init(const char *capture_name, guint num_files);
const gchar *ringbuf_current_filename(void);
-FILE *ringbuf_init_libpcap_fdopen(int linktype, int snaplen, int *err);
-gboolean ringbuf_switch_file(FILE **pdh, gchar **save_file, int *save_file_fd, int *err);
+FILE *ringbuf_init_libpcap_fdopen(int linktype, int snaplen,
+ long *bytes_written, int *err);
+gboolean ringbuf_switch_file(FILE **pdh, gchar **save_file, int *save_file_fd,
+ long *bytes_written, int *err);
gboolean ringbuf_libpcap_dump_close(gchar **save_file, int *err);
void ringbuf_free(void);
void ringbuf_error_cleanup(void);