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

ngtcp2: minor adjustments to make it work with public servers #6250

Closed
wants to merge 3 commits into from

Commits on Nov 26, 2020

  1. vquic/ngtcp2.h: define local_addr as sockaddr_storage

    This field needs to be wide enough to hold sockaddr_in6 when
    connecting via IPv6.  Otherwise, ngtcp2_conn_read_pkt will drop the
    packets because of the address mismatch:
      I00000022 [...] con ignore packet from unknown path
    
    We can safely assume that struct sockaddr_storage is available, as it
    is used in the public interface of ngtcp2.
    ueno committed Nov 26, 2020
    Copy the full SHA
    84055a4 View commit details
    Browse the repository at this point in the history
  2. Copy the full SHA
    31d1829 View commit details
    Browse the repository at this point in the history
  3. Copy the full SHA
    57472a4 View commit details
    Browse the repository at this point in the history