summaryrefslogtreecommitdiff
path: root/src/protocol/internal/buffer.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/protocol/internal/buffer.h')
-rw-r--r--src/protocol/internal/buffer.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/protocol/internal/buffer.h b/src/protocol/internal/buffer.h
index 0e0b635..0cfdca6 100644
--- a/src/protocol/internal/buffer.h
+++ b/src/protocol/internal/buffer.h
@@ -44,6 +44,9 @@ static inline void buffer_clear(buffer *b) { b->offs = b->sz = 0; }
static inline void buffer_deinit(buffer *b) { free(b->p); }
static inline uint8_t *buffer_data(buffer *b) { return b->p + b->offs; }
static inline size_t buffer_len(buffer *b) { return b->sz; }
+/* buffer_append: append data in s to buffer b,
+ * if s is NULL, then just allocate len bytes of space in b
+ */
int buffer_append(buffer *b, const uint8_t *s, size_t len);
int buffer_append_string(buffer *b, const char *s, size_t len);
int buffer_append_byte(buffer *b, uint8_t);