nghttpx: No need to check activeness of SETTINGS ACK timer
We don't have to check activeness of SETTINGS ACK timer since we only send SETTINGS frame without ACK only once per session at the moment.
This commit is contained in:
parent
9f770fec36
commit
a224aba577
|
@ -756,10 +756,6 @@ int on_stream_close_callback(nghttp2_session *session, int32_t stream_id,
|
|||
} // namespace
|
||||
|
||||
void Http2Session::start_settings_timer() {
|
||||
if (ev_is_active(&settings_timer_)) {
|
||||
return;
|
||||
}
|
||||
|
||||
ev_timer_again(conn_.loop, &settings_timer_);
|
||||
}
|
||||
|
||||
|
|
|
@ -146,9 +146,6 @@ int Http2Upstream::upgrade_upstream(HttpsUpstream *http) {
|
|||
}
|
||||
|
||||
void Http2Upstream::start_settings_timer() {
|
||||
if (ev_is_active(&settings_timer_)) {
|
||||
return;
|
||||
}
|
||||
ev_timer_start(handler_->get_loop(), &settings_timer_);
|
||||
}
|
||||
|
||||
|
|
|
@ -620,10 +620,6 @@ void LiveCheck::on_success() {
|
|||
int LiveCheck::noop() { return 0; }
|
||||
|
||||
void LiveCheck::start_settings_timer() {
|
||||
if (ev_is_active(&settings_timer_)) {
|
||||
return;
|
||||
}
|
||||
|
||||
ev_timer_set(&settings_timer_, 10., 0.);
|
||||
ev_timer_start(conn_.loop, &settings_timer_);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue