reverted to using client handshake write callback instead of just posting

This commit is contained in:
Roman Arutyunyan 2013-04-11 07:55:40 +04:00
parent 682d24d682
commit eee52d83c4

View file

@ -609,7 +609,10 @@ ngx_rtmp_client_handshake(ngx_rtmp_session_t *s, unsigned async)
}
if (async) {
ngx_post_event(c->write, &ngx_posted_events);
ngx_add_timer(c->write, s->timeout);
if (ngx_handle_write_event(c->write, 0) != NGX_OK) {
ngx_rtmp_finalize_session(s);
}
return;
}