Спасибо за ответ. Я реализовал код:
uint64_t rxBytes = 0;
rxBytes = 1400 * DynamicCast<UdpServer> (ServerApp.Get (0))->GetReceived ();
double throughput = (rxBytes * 8) / (10 * 1000000.0); //Mbit/s
std::cout << "throughput = " << throughput << " Mbit/s" << std::end
Но я получил ошибку SIGSEGV. В чем может быть проблема?
Спасибо