diff options
Diffstat (limited to 'src/packet.h')
-rw-r--r-- | src/packet.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/packet.h b/src/packet.h index 781c0e66..7e2e0066 100644 --- a/src/packet.h +++ b/src/packet.h @@ -5,12 +5,14 @@ #include <stdint.h> struct packet { + enum { PACKET_APPENDED, PACKET_DYNAMIC } type; unsigned ref; size_t length; - uint8_t data[]; + uint8_t *data; }; -struct packet* packet_new(uint32_t length); +struct packet* packet_new(size_t length); +struct packet* packet_new_dynamic(uint8_t* data, size_t length); struct packet* packet_ref(struct packet *p); void packet_unref(struct packet *p); |