diff options
author | Přemysl Janouch <p.janouch@gmail.com> | 2015-04-08 02:09:40 +0200 |
---|---|---|
committer | Přemysl Janouch <p.janouch@gmail.com> | 2015-04-08 02:09:40 +0200 |
commit | ec54630feff37528240a0433cb4a17d959fa4c7a (patch) | |
tree | 6b72ccbcc6ec87761ceb21d0ab31447abfabbf62 | |
parent | 7333f271595a8bd42f02f19e1e3e71df9764bc96 (diff) | |
download | json-rpc-shell-ec54630feff37528240a0433cb4a17d959fa4c7a.tar.gz json-rpc-shell-ec54630feff37528240a0433cb4a17d959fa4c7a.tar.xz json-rpc-shell-ec54630feff37528240a0433cb4a17d959fa4c7a.zip |
Fix obsolete libev API usage
-rw-r--r-- | json-rpc-shell.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/json-rpc-shell.c b/json-rpc-shell.c index a231d0b..1e7038a 100644 --- a/json-rpc-shell.c +++ b/json-rpc-shell.c @@ -785,7 +785,7 @@ backend_ws_on_data (struct app_context *ctx, const void *data, size_t len) // Finished the handshake, return to caller // (we run a separate loop to wait for the handshake to finish) self->state = WS_HANDLER_OPEN; - ev_unloop (EV_DEFAULT_ EVUNLOOP_ONE); + ev_break (EV_DEFAULT_ EVBREAK_ONE); if ((len -= n_parsed)) return ws_parser_push (&self->parser, @@ -835,7 +835,7 @@ backend_ws_close_connection (struct app_context *ctx) if (!self->e) error_set (&self->e, "unexpected connection close"); - ev_unloop (EV_DEFAULT_ EVUNLOOP_ONE); + ev_break (EV_DEFAULT_ EVBREAK_ONE); } } @@ -1192,7 +1192,7 @@ backend_ws_on_message (struct app_context *ctx, } str_append_data (self->response_buffer, data, len); - ev_unloop (EV_DEFAULT_ EVUNLOOP_ONE); + ev_break (EV_DEFAULT_ EVBREAK_ONE); return true; } @@ -1334,7 +1334,7 @@ backend_ws_connect (struct app_context *ctx, struct error **e) ev_timer_start (EV_DEFAULT_ &self->timeout_watcher); self->waiting_for_event = true; - ev_loop (EV_DEFAULT_ 0); + ev_run (EV_DEFAULT_ 0); self->waiting_for_event = false; ev_timer_stop (EV_DEFAULT_ &self->timeout_watcher); @@ -1387,7 +1387,7 @@ backend_ws_make_call (struct app_context *ctx, self->response_buffer = buf; self->waiting_for_event = true; - ev_loop (EV_DEFAULT_ 0); + ev_run (EV_DEFAULT_ 0); self->waiting_for_event = false; self->response_buffer = NULL; |