skipstone/include/skipstone/message.h
XANTRONIX Development bd20b8da36 Ensure to pack string length in 'z' template
Ensure to pack string length in 'z' template to skipstone_message_pack()
2020-09-21 22:46:43 -05:00

17 lines
429 B
C

#ifndef _SKIPSTONE_MESSAGE_H
#define _SKIPSTONE_MESSAGE_H
#include <stdint.h>
#include <sys/types.h>
#include <skipstone/link.h>
#include <skipstone/map.h>
#define SKIPSTONE_MESSAGE_MAX_PAYLOAD 4096
#define SKIPSTONE_MESSAGE_MAX_STRLEN 256
ssize_t skipstone_message_pack(void *message,
size_t len,
const char *template, ...);
#endif /* _SKIPSTONE_MESSAGE_H */