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 Socket Binding Issue on Linux for IPv4 and IPv6 #582

Merged
merged 2 commits into from
Sep 18, 2024

Commits on Sep 17, 2024

  1. Fix UDP Socket Binding Issue on Linux for IPv4 and IPv6

    On Linux, when using UDP sockets, both IPv6 and IPv4 addresses are
    bound to the same socket by default. This can cause issues when
    sending and receiving packets across different address families.
    Specifically, if we receive a packet from an IPv4 address,
    attempting to send a response using an IPv6 address fails.
    jkralik committed Sep 17, 2024
    Configuration menu
    Copy the full SHA
    5da2f7d View commit details
    Browse the repository at this point in the history

Commits on Sep 18, 2024

  1. cover case by test

    jkralik committed Sep 18, 2024
    Configuration menu
    Copy the full SHA
    924009a View commit details
    Browse the repository at this point in the history