aboutsummaryrefslogtreecommitdiff
path: root/include/salticidae/msg.h
diff options
context:
space:
mode:
authorDeterminant <tederminant@gmail.com>2019-06-11 19:27:55 -0400
committerDeterminant <tederminant@gmail.com>2019-06-11 19:27:55 -0400
commit047791d61340f8b727be06d37b613b3914dec957 (patch)
treea1e50ad572a4e5ba5bcc748f4b25bf8fbb0c1ac2 /include/salticidae/msg.h
parentef377f5d85503451a16d50fbc535a7537a28b57f (diff)
...
Diffstat (limited to 'include/salticidae/msg.h')
-rw-r--r--include/salticidae/msg.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/salticidae/msg.h b/include/salticidae/msg.h
index 7e8032b..2f597fc 100644
--- a/include/salticidae/msg.h
+++ b/include/salticidae/msg.h
@@ -285,9 +285,9 @@ typedef struct msg_t msg_t;
extern "C" {
#endif
-msg_t *msg_new(_opcode_t opcode, bytearray_t *_moved_payload);
+msg_t *msg_new_moved_from_bytearray(_opcode_t opcode, bytearray_t *_moved_payload);
void msg_free(msg_t *msg);
-datastream_t *msg_get_payload(const msg_t *msg);
+datastream_t *msg_consume_payload(const msg_t *msg);
_opcode_t msg_get_opcode(const msg_t *msg);
#ifdef __cplusplus