You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by ma...@apache.org on 2019/02/04 02:40:31 UTC

[trafficserver] branch quic-latest updated: Fix test_QUICFrameDispatcher

This is an automated email from the ASF dual-hosted git repository.

maskit pushed a commit to branch quic-latest
in repository https://gitbox.apache.org/repos/asf/trafficserver.git


The following commit(s) were added to refs/heads/quic-latest by this push:
     new 7a83ea8  Fix test_QUICFrameDispatcher
7a83ea8 is described below

commit 7a83ea8c1a9a01ac40649c4114bc1dcbc8c79c03
Author: Masakazu Kitajo <ma...@apache.org>
AuthorDate: Mon Feb 4 11:40:12 2019 +0900

    Fix test_QUICFrameDispatcher
---
 iocore/net/quic/test/test_QUICFrameDispatcher.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/iocore/net/quic/test/test_QUICFrameDispatcher.cc b/iocore/net/quic/test/test_QUICFrameDispatcher.cc
index 5c9f9cc..501eaa9 100644
--- a/iocore/net/quic/test/test_QUICFrameDispatcher.cc
+++ b/iocore/net/quic/test/test_QUICFrameDispatcher.cc
@@ -64,7 +64,7 @@ TEST_CASE("QUICFrameHandler", "[quic]")
   CHECK(streamManager.getTotalFrameCount() == 1);
 
   // CONNECTION_CLOSE frame
-  QUICConnectionCloseFrame connectionCloseFrame({});
+  QUICConnectionCloseFrame connectionCloseFrame(0, 0, "", 0, nullptr);
   connectionCloseFrame.store(buf, &len, 4096);
   quicFrameDispatcher.receive_frames(QUICEncryptionLevel::INITIAL, buf, len, should_send_ack, is_flow_controlled, nullptr);
   CHECK(connection.getTotalFrameCount() == 1);