aboutsummaryrefslogtreecommitdiff
path: root/src/buffer.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/buffer.h')
-rw-r--r--src/buffer.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/buffer.h b/src/buffer.h
index 58838d1..1281bb3 100644
--- a/src/buffer.h
+++ b/src/buffer.h
@@ -29,8 +29,8 @@ typedef struct t_buffer_ {
29 size_t sent, received; /* bytes sent, and bytes received */ 29 size_t sent, received; /* bytes sent, and bytes received */
30 p_io io; /* IO driver used for this buffer */ 30 p_io io; /* IO driver used for this buffer */
31 p_timeout tm; /* timeout management for this buffer */ 31 p_timeout tm; /* timeout management for this buffer */
32 size_t first, last; /* index of first and last bytes of stored data */ 32 size_t first, last; /* index of first and last bytes of stored data */
33 char data[BUF_SIZE]; /* storage space for buffer data */ 33 char data[BUF_SIZE]; /* storage space for buffer data */
34} t_buffer; 34} t_buffer;
35typedef t_buffer *p_buffer; 35typedef t_buffer *p_buffer;
36 36