From c340859ef3ffbaf8ec263de432e16d20456b2088 Mon Sep 17 00:00:00 2001 From: Nicola Baldo Date: Mon, 27 Jun 2011 18:08:15 +0200 Subject: [PATCH] fixed bug in connection of MAC and RLC traces --- src/lte/helper/lena-helper.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lte/helper/lena-helper.cc b/src/lte/helper/lena-helper.cc index 70aaeba3d..974d1e4df 100644 --- a/src/lte/helper/lena-helper.cc +++ b/src/lte/helper/lena-helper.cc @@ -546,7 +546,7 @@ LenaHelper::EnableMacTraces (void) void LenaHelper::EnableDlMacTraces (void) { - Config::Connect ("/NodeList/0/DeviceList/0/LteEnbMac/DlScheduling", + Config::Connect ("/NodeList/*/DeviceList/*/LteEnbMac/DlScheduling", MakeBoundCallback (&DlSchedulingCallback, m_macStats)); } @@ -563,7 +563,7 @@ UlSchedulingCallback (Ptr mac, std::string path, void LenaHelper::EnableUlMacTraces (void) { - Config::Connect ("/NodeList/0/DeviceList/0/LteEnbMac/UlScheduling", + Config::Connect ("/NodeList/*/DeviceList/*/LteEnbMac/UlScheduling", MakeBoundCallback (&UlSchedulingCallback, m_macStats)); }