aboutsummaryrefslogtreecommitdiffstats
path: root/src/afb-wsj1.h
diff options
context:
space:
mode:
authorJosé Bollo <jose.bollo@iot.bzh>2016-06-08 07:51:36 +0200
committerJosé Bollo <jose.bollo@iot.bzh>2016-06-08 11:49:58 +0200
commit9ee05e42384b34d8626cd8cccfd50538136f369f (patch)
treeef8f15a86e9b3b81a727156cbb09c8b85448b6b6 /src/afb-wsj1.h
parent80551a0405e8a208af587b6fff7f784a1a2ffbf4 (diff)
Websocket: improves overall integration
Change-Id: I7af7b96d2f32b706eb378747c3719fa48f68c961 Signed-off-by: José Bollo <jose.bollo@iot.bzh>
Diffstat (limited to 'src/afb-wsj1.h')
-rw-r--r--src/afb-wsj1.h16
1 files changed, 13 insertions, 3 deletions
diff --git a/src/afb-wsj1.h b/src/afb-wsj1.h
index ad734962..49b77828 100644
--- a/src/afb-wsj1.h
+++ b/src/afb-wsj1.h
@@ -66,6 +66,14 @@ extern void afb_wsj1_addref(struct afb_wsj1 *wsj1);
extern void afb_wsj1_unref(struct afb_wsj1 *wsj1);
/*
+ * Sends a close message to the websocket of 'wsj1'.
+ * The close message is sent with the 'code' and 'text'.
+ * 'text' can be NULL.
+ * Return 0 in case of success. Otherwise, returns -1 and set errno.
+ */
+extern int afb_wsj1_close(struct afb_wsj1 *wsj1, uint16_t code, const char *text);
+
+/*
* Sends on 'wsj1' the event of name 'event' with the
* data 'object'. If not NULL, 'object' should be a valid
* JSON string.
@@ -76,6 +84,7 @@ extern int afb_wsj1_send_event_s(struct afb_wsj1 *wsj1, const char *event, const
/*
* Sends on 'wsj1' the event of name 'event' with the
* data 'object'. 'object' can be NULL.
+ * 'object' is dereferenced using 'json_object_put'. Use 'json_object_get' to keep it.
* Return 0 in case of success. Otherwise, returns -1 and set errno.
*/
extern int afb_wsj1_send_event_j(struct afb_wsj1 *wsj1, const char *event, struct json_object *object);
@@ -92,6 +101,7 @@ extern int afb_wsj1_call_s(struct afb_wsj1 *wsj1, const char *api, const char *v
/*
* Sends on 'wsj1' a call to the method of 'api'/'verb' with arguments
* given by 'object'. 'object' can be NULL.
+ * 'object' is dereferenced using 'json_object_put'. Use 'json_object_get' to keep it.
* On receiving the reply, the function 'on_reply' is called with 'closure'
* as its first argument and the message of the reply.
* Return 0 in case of success. Otherwise, returns -1 and set errno.
@@ -110,13 +120,11 @@ extern int afb_wsj1_reply_s(struct afb_wsj1_msg *msg, const char *object, const
* Sends for message 'msg' the reply with the 'object' and, if not NULL, the token.
* When 'iserror' is zero a OK reply is send, otherwise an ERROR reply is sent.
* 'object' can be NULL.
+ * 'object' is dereferenced using 'json_object_put'. Use 'json_object_get' to keep it.
* Return 0 in case of success. Otherwise, returns -1 and set errno.
*/
extern int afb_wsj1_reply_j(struct afb_wsj1_msg *msg, struct json_object *object, const char *token, int iserror);
-
-
-
/*
* Sends for message 'msg' the OK reply with the 'object' and, if not NULL, the token.
* If not NULL, 'object' should be a valid JSON string.
@@ -130,6 +138,7 @@ static inline int afb_wsj1_reply_ok_s(struct afb_wsj1_msg *msg, const char *obje
/*
* Sends for message 'msg' the OK reply with the 'object' and, if not NULL, the token.
* 'object' can be NULL.
+ * 'object' is dereferenced using 'json_object_put'. Use 'json_object_get' to keep it.
* Return 0 in case of success. Otherwise, returns -1 and set errno.
*/
static inline int afb_wsj1_reply_ok_j(struct afb_wsj1_msg *msg, struct json_object *object, const char *token)
@@ -150,6 +159,7 @@ static inline int afb_wsj1_reply_error_s(struct afb_wsj1_msg *msg, const char *o
/*
* Sends for message 'msg' the ERROR reply with the 'object' and, if not NULL, the token.
* 'object' can be NULL.
+ * 'object' is dereferenced using 'json_object_put'. Use 'json_object_get' to keep it.
* Return 0 in case of success. Otherwise, returns -1 and set errno.
*/
static inline int afb_wsj1_reply_error_j(struct afb_wsj1_msg *msg, struct json_object *object, const char *token)