summaryrefslogtreecommitdiffstats
path: root/gatchat/ringbuffer.c
diff options
context:
space:
mode:
Diffstat (limited to 'gatchat/ringbuffer.c')
-rw-r--r--gatchat/ringbuffer.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/gatchat/ringbuffer.c b/gatchat/ringbuffer.c
index 23bcaed7..f82a9f9d 100644
--- a/gatchat/ringbuffer.c
+++ b/gatchat/ringbuffer.c
@@ -31,6 +31,13 @@
#define MAX_SIZE 262144
+struct ring_buffer {
+ unsigned char *buffer;
+ unsigned int size;
+ unsigned int in;
+ unsigned int out;
+};
+
struct ring_buffer *ring_buffer_new(unsigned int size)
{
unsigned int real_size = 1;