Ensure to pack string length in 'z' template to skipstone_message_pack()
17 lines
429 B
C
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 */
|