Commit 0b9ee38d authored by Tatsuhiro Tsujikawa's avatar Tatsuhiro Tsujikawa

nghttpx: Handle corner case where session is going down just after ACK recved

parent a224aba5
No related merge requests found
......@@ -533,6 +533,11 @@ int LiveCheck::on_read(const uint8_t *data, size_t len) {
LOG(INFO) << "No more read/write for this session";
}
// If we have SETTINGS ACK already, we treat this success.
if (settings_ack_received_) {
return 0;
}
return -1;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment