Your environment.
What did you do?
send 2*MTU bytes at a time:
pingMsg := make([]byte, 2*assoc.MTU())
for{
stream.Write(pingMsg)
time.Sleep(time.Second)
}
send 3*MTU bytes at a time:
pingMsg := make([]byte, 3*assoc.MTU())
for{
stream.Write(pingMsg)
time.Sleep(time.Second)
}
What did you expect?
pion chooses a delay based on RTT?
What happened?
pcaps.zip
Your environment.
What did you do?
send
2*MTU bytesat a time:send
3*MTU bytesat a time:What did you expect?
pion chooses a delay based on RTT?
What happened?
pcaps.zip