WebSocket: fix connection timeout

This commit is contained in:
Přemysl Eric Janouch 2017-02-06 21:23:41 +01:00
parent 06e066a491
commit 9531f2b518
Signed by: p
GPG Key ID: B715679E3A361BE6
1 changed files with 1 additions and 0 deletions

View File

@ -2107,6 +2107,7 @@ backend_ws_connect (struct ws_context *self, struct error **e)
// As it is, this isn't really too useful.
ev_timer_init (&self->timeout_watcher,
backend_ws_on_connection_timeout, 30, 0);
self->timeout_watcher.data = self;
// Run an event loop to process the handshake
ev_timer_start (EV_DEFAULT_ &self->timeout_watcher);