X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fafb-ws.c;h=49a314a60698269e67b319452c30d9331af42c05;hb=6ea1d50ab6571551e1d0379940349911956c97ee;hp=3dae3390f2f55e8cb0a5198e72d626e4d66d78c9;hpb=54b2652e94cfa7840dbebcba46edd5459e7c6e86;p=src%2Fapp-framework-binder.git diff --git a/src/afb-ws.c b/src/afb-ws.c index 3dae3390..49a314a6 100644 --- a/src/afb-ws.c +++ b/src/afb-ws.c @@ -116,8 +116,6 @@ void afb_ws_disconnect(struct afb_ws *ws) struct websock *wsi = ws->ws; ws->up = NULL; ws->ws = NULL; - upoll_on_hangup(up, NULL); - upoll_on_readable(up, NULL); upoll_close(up); websock_destroy(wsi); } @@ -162,10 +160,12 @@ static void aws_on_readable(struct afb_ws *ws) static void aws_on_hangup(struct afb_ws *ws) { + afb_ws_disconnect(ws); } static void aws_disconnect(struct afb_ws *ws) { + afb_ws_disconnect(ws); } static inline struct buf aws_pick_buffer(struct afb_ws *ws) @@ -204,7 +204,7 @@ static void aws_on_close(struct afb_ws *ws, uint16_t code, size_t size) else { aws_read(ws, size); b = aws_pick_buffer(ws); - ws->itf->on_close(ws, code, b.buffer, b.size); + ws->itf->on_close(ws->closure, code, b.buffer, b.size); } }