nghttpx: Reset buffer on empty

This commit is contained in:
Tatsuhiro Tsujikawa 2015-01-02 13:54:41 +09:00
parent fe8f2a4603
commit 645897503d
2 changed files with 5 additions and 2 deletions

View File

@ -156,11 +156,11 @@ int ClientHandler::write_clear() {
wlimit_.drain(nwrite);
continue;
}
wb_.reset();
if (on_write() != 0) {
return -1;
}
if (wb_.rleft() == 0) {
wb_.reset();
break;
}
}
@ -310,6 +310,7 @@ int ClientHandler::write_tls() {
continue;
}
wb_.reset();
if (on_write() != 0) {
return -1;
}

View File

@ -1653,11 +1653,11 @@ int Http2Session::write_clear() {
continue;
}
wb_.reset();
if (on_write() != 0) {
return -1;
}
if (wb_.rleft() == 0) {
wb_.reset();
break;
}
}
@ -1729,6 +1729,7 @@ int Http2Session::read_tls() {
return -1;
}
rb_.reset();
struct iovec iov[2];
auto iovcnt = rb_.wiovec(iov);
if (iovcnt > 0) {
@ -1792,6 +1793,7 @@ int Http2Session::write_tls() {
continue;
}
wb_.reset();
if (on_write() != 0) {
return -1;
}