I have a client/server topology in NS3 and I want to calculate the throughput of UDP traffic on the server.
This line of code sink = StaticCast<PacketSink> (tcpServerApp.Get (0));
does not work because it can only be used in calculating the throughput of TCP packets. How can I calculate throughput for the received UDP traffic on the server?
Thanks