mirror of
https://github.com/nghttp2/nghttp2.git
synced 2025-12-06 18:18:52 +08:00
nghttpx: Reset buffer on empty
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user