From bf2a3002e094cb92955e8ab273aedc256905b74e Mon Sep 17 00:00:00 2001 From: Tommaso Pecorella Date: Tue, 30 Aug 2022 23:29:19 +0200 Subject: [PATCH] examples: fix copy-paste error --- src/traffic-control/examples/codel-vs-pfifo-asymmetric.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/traffic-control/examples/codel-vs-pfifo-asymmetric.cc b/src/traffic-control/examples/codel-vs-pfifo-asymmetric.cc index 542b20a55..552f721ec 100644 --- a/src/traffic-control/examples/codel-vs-pfifo-asymmetric.cc +++ b/src/traffic-control/examples/codel-vs-pfifo-asymmetric.cc @@ -242,7 +242,7 @@ TraceDroppingState (std::string dropStateTrFileName) else { Ptr stream = ascii.CreateFileStream (dropStateTrFileName.c_str ()); - Config::ConnectWithoutContext ("/NodeList/2/CwndTracer$ns3::TrafficControlLayer/RootQueueDiscList/0/$ns3::CoDelQueueDisc/DropState", MakeBoundCallback (&DroppingStateTracer, stream)); + Config::ConnectWithoutContext ("/NodeList/2/$ns3::TrafficControlLayer/RootQueueDiscList/0/$ns3::CoDelQueueDisc/DropState", MakeBoundCallback (&DroppingStateTracer, stream)); } }