private-octopus / picoquic

Minimal implementation of the QUIC protocol
MIT License
540 stars 159 forks source link

Fit and finish baton app #1471

Closed huitema closed 1 year ago

huitema commented 1 year ago

From the early test, three small fixes needed:

1) Fix unused variables warning in unix builds

2) Add some execution reporting in the bacon app: how many turns, what was the final error code, how many datagrams were received, etc.

3) Fix the race condition on FIN in the baton app -- should not exit if the client has not actually sent the close message, or received a close message from the server.

huitema commented 1 year ago

Much of that has been done. The one piece that remains: running multiple batons in parallel. This needs discussion...

huitema commented 1 year ago

Fixed in PR #1475