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 516db1abea0671c6ce18437dd48e1c6016d7c7a8 Author: Masaori Koshiba <[email protected]> AuthorDate: Wed Aug 22 10:37:24 2018 +0900 Fix unit tests --- iocore/net/quic/Mock.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/iocore/net/quic/Mock.h b/iocore/net/quic/Mock.h index 0578932..1bc08a4 100644 --- a/iocore/net/quic/Mock.h +++ b/iocore/net/quic/Mock.h @@ -607,6 +607,12 @@ public: { return QUICEncryptionLevel::INITIAL; } + + void + abort_handshake() override + { + return; + } }; class MockContinuation : public Continuation
