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(server): filter out /quic in favor of /quic-v1 #4467

Merged
merged 8 commits into from
Sep 12, 2023

Commits on Sep 7, 2023

  1. fix(server): filter out /quic in favor of /quic-v1

    Configuration files generated by Kubo <= v0.22 list both `/quic` and `/quic-v1` listen
    addresses with the same UDP port. Given that we enable draft-29, the two addresses are
    treated the same by rust-libp2p's QUIC implementation. Though calling `listen_on` with
    both results in an "Address already in use" error by the OS on the second call. To
    prevent this from happening filter out `/quic` addresses in favor of `/quic-v1`.
    mxinden committed Sep 7, 2023
    Configuration menu
    Copy the full SHA
    c5d5505 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    40f7935 View commit details
    Browse the repository at this point in the history

Commits on Sep 11, 2023

  1. Configuration menu
    Copy the full SHA
    93564ba View commit details
    Browse the repository at this point in the history
  2. Update Cargo.toml

    thomaseizinger committed Sep 11, 2023
    Configuration menu
    Copy the full SHA
    41991d9 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    beb7c27 View commit details
    Browse the repository at this point in the history
  4. Fix bad merge

    thomaseizinger committed Sep 11, 2023
    Configuration menu
    Copy the full SHA
    ba00657 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    295146c View commit details
    Browse the repository at this point in the history

Commits on Sep 12, 2023

  1. Configuration menu
    Copy the full SHA
    7e21f9b View commit details
    Browse the repository at this point in the history