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 e2c5a0fdf4762592fec406eff9cc89ec79567596 Author: Masaori Koshiba <[email protected]> AuthorDate: Thu May 31 10:59:58 2018 +0900 Rename QUICConnectionInfo QUICConnectionInfoProvider --- iocore/net/P_QUICNetVConnection.h | 2 +- iocore/net/quic/QUICConnection.h | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/iocore/net/P_QUICNetVConnection.h b/iocore/net/P_QUICNetVConnection.h index 07884d2..94f6ccf 100644 --- a/iocore/net/P_QUICNetVConnection.h +++ b/iocore/net/P_QUICNetVConnection.h @@ -191,7 +191,7 @@ public: void close(QUICConnectionErrorUPtr error) override; void handle_received_packet(UDPPacket *packet) override; - // QUICConnection (QUICConnectionInfo) + // QUICConnection (QUICConnectionInfoProvider) QUICConnectionId peer_connection_id() const override; QUICConnectionId original_connection_id() const override; QUICConnectionId connection_id() const override; diff --git a/iocore/net/quic/QUICConnection.h b/iocore/net/quic/QUICConnection.h index f0048cd..1f7cd8f 100644 --- a/iocore/net/quic/QUICConnection.h +++ b/iocore/net/quic/QUICConnection.h @@ -33,7 +33,7 @@ class QUICStreamManager; class UDPPacket; class SSLNextProtocolSet; -class QUICConnectionInfo +class QUICConnectionInfoProvider { public: virtual QUICConnectionId peer_connection_id() const = 0; @@ -63,7 +63,7 @@ public: virtual QUICPacketNumber largest_acked_packet_number() const = 0; }; -class QUICConnection : public QUICPacketTransmitter, public QUICFrameHandler, public QUICConnectionInfo +class QUICConnection : public QUICPacketTransmitter, public QUICFrameHandler, public QUICConnectionInfoProvider { public: virtual QUICStreamManager *stream_manager() = 0; -- To stop receiving notification emails like this one, please contact [email protected].
