You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
I am trying to send 2GB bytes with BulkSend app using QuicSocket however the app stops sending data after sending a few hundred thousand bytes (approx 14600 Quic packets). Is there any issue with the Quic implementation or it's me doing something wrong?
I used the code from quic-variants-comparison-bulksend.cc
Thank you
uint16_t port = 50000; // well-known echo port number
Hi,
I am trying to send 2GB bytes with BulkSend app using QuicSocket however the app stops sending data after sending a few hundred thousand bytes (approx 14600 Quic packets). Is there any issue with the Quic implementation or it's me doing something wrong?
I used the code from quic-variants-comparison-bulksend.cc
Thank you
uint16_t port = 50000; // well-known echo port number
Address sinkLocalAddress (InetSocketAddress (Ipv4Address::GetAny (), port));
ApplicationContainer clientApps;
ApplicationContainer serverApps;
// applications client and server
serverApps.Start (Seconds (1.0));
clientApps.Stop (Seconds (50.0));
clientApps.Start (Seconds (4.0));
The text was updated successfully, but these errors were encountered: