improves comments
[src/app-framework-binder.git] / src / afb-ws-json1.c
index 78b8c21..9e20e7d 100644 (file)
@@ -129,6 +129,10 @@ static void aws_on_hangup(struct afb_ws_json1 *ws)
 
 struct afb_wsreq
 {
+       /*
+        * CAUTION: 'context' field should be the first because there
+        * is an implicit convertion to struct afb_context
+        */
        struct afb_context context;
        int refcount;
        struct afb_ws_json1 *aws;
@@ -169,7 +173,9 @@ static const struct afb_req_itf wsreq_itf = {
        .context_get = (void*)afb_context_get,
        .context_set = (void*)afb_context_set,
        .addref = (void*)wsreq_addref,
-       .unref = (void*)wsreq_unref
+       .unref = (void*)wsreq_unref,
+       .session_close = (void*)afb_context_close,
+       .session_set_LOA = (void*)afb_context_change_loa
 };
 
 static int aws_wsreq_parse(struct afb_wsreq *r, char *text, size_t size)