-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
queston about the tester-streams #17
Comments
`#include "ns3/core-module.h" using namespace ns3; NS_LOG_COMPONENT_DEFINE("QuicTesterStreams"); // connect to a number of traces // static void // static void // static void // std::ostringstream pathCW; // std::ostringstream fileCW; // std::ostringstream pathRTT; // std::ostringstream fileRTT; // std::ostringstream pathRCWnd; // std::ostringstream fileRCWnd; // std::ostringstream fileName; // Ptr stream = asciiTraceHelper.CreateFileStream (fileName.str ().c_str ()); // Ptr stream1 = asciiTraceHelper.CreateFileStream (fileCW.str ().c_str ()); // Ptr stream2 = asciiTraceHelper.CreateFileStream (fileRTT.str ().c_str ()); // Ptr stream4 = asciiTraceHelper.CreateFileStream (fileRCWnd.str ().c_str ()); int Config::SetDefault ("ns3::QuicSocketBase::SocketSndBufSize", UintegerValue(40000000)); std::cout LogLevel log_precision = LOG_LEVEL_INFO; //LogComponentEnable ("QuicEchoHelper", log_precision); NodeContainer nodes; PointToPointHelper pointToPoint; NetDeviceContainer devices; QuicHelper stack; Ipv4AddressHelper address; Ipv4InterfaceContainer interfaces = address.Assign (devices); ApplicationContainer clientApps; // QUIC client and server double interPacketInterval = 1000; serverApps.Start (Seconds (0.0)); clientApps.Start (Seconds (0.25)); if (true)
// Simulator::Schedule (Seconds (2.0000001), &Traces, n2->GetId(), // Packet::EnablePrinting (); std::cout << "\n\n#################### STARTING RUN ####################\n\n"; std::cout |
Hello sir
I am trying to build a quic stream system model. And I planned to revise the
quic-tester-stream.cc file at first. However, when i trace this file
in wireshark, I found that the packts are sent from the client to the
server and the ack packet from server to client side is not available
Because I did not really change this default file, so I was thinking
whether it is because my ns 3 set up or some nodes setting up problem
in this file?
sincerely
The text was updated successfully, but these errors were encountered: