From dcbec12bd76b543d66cea4b99f777086e2ddc9b1 Mon Sep 17 00:00:00 2001 From: Tom Henderson Date: Sun, 8 May 2016 13:38:44 -0700 Subject: [PATCH] tcp: initialize m_writeResults member variable --- src/test/ns3tcp/ns3tcp-loss-test-suite.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/test/ns3tcp/ns3tcp-loss-test-suite.cc b/src/test/ns3tcp/ns3tcp-loss-test-suite.cc index 1e62d9643..c07986231 100644 --- a/src/test/ns3tcp/ns3tcp-loss-test-suite.cc +++ b/src/test/ns3tcp/ns3tcp-loss-test-suite.cc @@ -103,7 +103,7 @@ Ns3TcpLossTestCase::Ns3TcpLossTestCase () m_totalTxBytes (200000), m_currentTxBytes (0), m_writeVectors (WRITE_VECTORS), - m_writeResults (false), + m_writeResults (WRITE_PCAP), m_writeLogging (WRITE_LOGGING), m_needToClose (true), m_tcpModel ("ns3::TcpWestwood") @@ -116,7 +116,7 @@ Ns3TcpLossTestCase::Ns3TcpLossTestCase (std::string tcpModel, uint32_t testCase) m_totalTxBytes (200000), m_currentTxBytes (0), m_writeVectors (WRITE_VECTORS), - m_writeResults (false), + m_writeResults (WRITE_PCAP), m_writeLogging (WRITE_LOGGING), m_needToClose (true), m_tcpModel (tcpModel)