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

Update to quic-go v0.15.5, adapt usage #141

Merged
merged 6 commits into from
May 4, 2020
Merged

Update to quic-go v0.15.5, adapt usage #141

merged 6 commits into from
May 4, 2020

Commits on Apr 29, 2020

  1. Update to quic-go v0.15.5, adapt usage

    Adapt usage of various APIs:
    - pass context (`context.Background()`, for now) in various Accept, Listen etc.
    - replace `session.Close()` with `session.CloseWithError`
    - module `h2quic` is now `http3`
    - `http3` now uses `EarlySession` instead of Session; add corresponding `DialEarly` API to `appquic`
    - set now required `NextProtos` where needed
    
    At the same time, slightly reorganize the usage of the `tls.Config`
    parameter for the `appquic.Dial` functions. As `NextProtos` is now required,
    pass this explicitly for every usage.
    As a related cleanup, don't automatically set `InsecureSkipVerify` and
    self-signed server certificates in the `appquic` library code anymore;
    moved to the applications, to make this hack a bit more apparent.
    matzf committed Apr 29, 2020
    Configuration menu
    Copy the full SHA
    e3804eb View commit details
    Browse the repository at this point in the history
  2. Update appnet.SplitHostPort to new address format

    New format allows to not include brackets.
    matzf committed Apr 29, 2020
    Configuration menu
    Copy the full SHA
    d31fe55 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    7c98f31 View commit details
    Browse the repository at this point in the history

Commits on Apr 30, 2020

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

Commits on May 4, 2020

  1. Configuration menu
    Copy the full SHA
    9529eb3 View commit details
    Browse the repository at this point in the history
  2. Fix typo

    matzf committed May 4, 2020
    Configuration menu
    Copy the full SHA
    fd43abc View commit details
    Browse the repository at this point in the history