This is an automated email from the ASF dual-hosted git repository. masaori pushed a commit to branch quic-latest in repository https://gitbox.apache.org/repos/asf/trafficserver.git
commit 64db8f9505b55757726536bd185fa396b55040f6 Author: Masaori Koshiba <[email protected]> AuthorDate: Fri Jun 22 09:43:28 2018 +0900 Add PNE support to QUICPacketHandlerOut --- iocore/net/QUICPacketHandler.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/iocore/net/QUICPacketHandler.cc b/iocore/net/QUICPacketHandler.cc index 8d66d5a..1a92cf7 100644 --- a/iocore/net/QUICPacketHandler.cc +++ b/iocore/net/QUICPacketHandler.cc @@ -350,7 +350,7 @@ void QUICPacketHandlerOut::send_packet(const QUICPacket &packet, QUICNetVConnection *vc, QUICPacketNumberProtector &pn_protector) { // TODO Pass QUICPacketNumberProtector - this->_send_packet(this, packet, vc->get_udp_con(), vc->con.addr, vc->pmtu(), nullptr, 0); + this->_send_packet(this, packet, vc->get_udp_con(), vc->con.addr, vc->pmtu(), &pn_protector, vc->peer_connection_id().length()); } void
