bneradt commented on code in PR #11317:
URL: https://github.com/apache/trafficserver/pull/11317#discussion_r1589709538
##########
src/iocore/net/QUICNetVConnection.cc:
##########
@@ -180,6 +180,10 @@ QUICNetVConnection::state_handshake(int event, Event *data)
break;
}
+ if (this->closed != 1 && (quiche_conn_is_closed(this->_quiche_con) ||
quiche_conn_is_draining(this->_quiche_con))) {
Review Comment:
Not directly related to this change, but should `closed` be a boolean? It
seems like this would read better that way.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]