Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(udp): test blocking Socket #2002

Merged
merged 2 commits into from
Jul 22, 2024
Merged

fix(udp): test blocking Socket #2002

merged 2 commits into from
Jul 22, 2024

Commits on Jul 22, 2024

  1. fix(udp): test blocking Socket

    `quinn_udp::UdpSocketState` sets the the OS socket to non-blocking in order to
    be used by poll based runtimes like `tokio`.
    
    For basic unit tests, this might result in race conditions, e.g. where one
    socket tries to receive before the other is done sending, thus returning
    `WouldBlock`.
    
    This commit sets the OS sockets back to blocking on `neqo-udp` unit tests.
    mxinden committed Jul 22, 2024
    Configuration menu
    Copy the full SHA
    4c7a65f View commit details
    Browse the repository at this point in the history
  2. Trigger CI

    mxinden committed Jul 22, 2024
    Configuration menu
    Copy the full SHA
    dbdef20 View commit details
    Browse the repository at this point in the history