From d3cb597b2161a4a7c5494cb570e47b082a80c316 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jos=C3=A9=20Bollo?= Date: Fri, 30 Jun 2017 17:16:39 +0200 Subject: [PATCH] afb-ws-json1: expose addref/unref functions Change-Id: Ie264540d20e3a7afbbf2cd16cd54508d07f35034 --- src/afb-ws-json1.c | 10 +++++----- src/afb-ws-json1.h | 2 ++ 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/src/afb-ws-json1.c b/src/afb-ws-json1.c index c796b17c..a0cdb8a3 100644 --- a/src/afb-ws-json1.c +++ b/src/afb-ws-json1.c @@ -143,13 +143,13 @@ error: return NULL; } -static struct afb_ws_json1 *aws_addref(struct afb_ws_json1 *ws) +struct afb_ws_json1 *afb_ws_json1_addref(struct afb_ws_json1 *ws) { __atomic_add_fetch(&ws->refcount, 1, __ATOMIC_RELAXED); return ws; } -static void aws_unref(struct afb_ws_json1 *ws) +void afb_ws_json1_unref(struct afb_ws_json1 *ws) { if (!__atomic_sub_fetch(&ws->refcount, 1, __ATOMIC_RELAXED)) { afb_evt_listener_unref(ws->listener); @@ -165,7 +165,7 @@ static void aws_unref(struct afb_ws_json1 *ws) static void aws_on_hangup(struct afb_ws_json1 *ws, struct afb_wsj1 *wsj1) { - aws_unref(ws); + afb_ws_json1_unref(ws); } static void aws_on_call(struct afb_ws_json1 *ws, const char *api, const char *verb, struct afb_wsj1_msg *msg) @@ -198,7 +198,7 @@ static void aws_on_call(struct afb_ws_json1 *ws, const char *api, const char *ve wsreq->xreq.api = api; wsreq->xreq.verb = verb; wsreq->xreq.json = afb_wsj1_msg_object_j(wsreq->msgj1); - wsreq->aws = aws_addref(ws); + wsreq->aws = afb_ws_json1_addref(ws); wsreq->xreq.listener = wsreq->aws->listener; /* emits the call */ @@ -225,7 +225,7 @@ static void wsreq_destroy(struct afb_xreq *xreq) afb_context_disconnect(&wsreq->xreq.context); afb_wsj1_msg_unref(wsreq->msgj1); afb_cred_unref(wsreq->xreq.cred); - aws_unref(wsreq->aws); + afb_ws_json1_unref(wsreq->aws); free(wsreq); } diff --git a/src/afb-ws-json1.h b/src/afb-ws-json1.h index 335ca608..96db1bc6 100644 --- a/src/afb-ws-json1.h +++ b/src/afb-ws-json1.h @@ -22,4 +22,6 @@ struct afb_context; struct afb_apiset; extern struct afb_ws_json1 *afb_ws_json1_create(int fd, struct afb_apiset *apiset, struct afb_context *context, void (*cleanup)(void*), void *closure); +extern struct afb_ws_json1 *afb_ws_json1_addref(struct afb_ws_json1 *ws); +extern void afb_ws_json1_unref(struct afb_ws_json1 *ws); -- 2.16.6