Hi all,
I need the adjust the BulkSend application attributes to fulfill the requirements of an application that sends packets at a bite rate of 150 kbps.
***************************************************************
BulkSendHelper dlClientHelper ("ns3::TcpSocketFactory",
InetSocketAddress (ueIpIface.GetAddress (u), dlPort));
dlClientHelper.SetAttribute ("MaxBytes", UintegerValue (0));
dlClientHelper.SetAttribute("SendSize", UintegerValue(512));
***************************************************************
the sendSize attribute is the amount of data to send each time. But, at what time exactly? each 1ms, 1s or ....?
Best regards