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

Add support for DTLS timeouts #1180

Merged
merged 2 commits into from
Feb 13, 2023
Merged

Add support for DTLS timeouts #1180

merged 2 commits into from
Feb 13, 2023

Commits on Feb 13, 2023

  1. Add support for DTLS timeouts

    When performing a DTLS handshake, the DTLS state machine may need to be
    updated based on the passage of time, for instance in response to packet
    loss.
    
    OpenSSL supports this by means of the `DTLSv1_get_timeout` and
    `DTLSv1_handle_timeout` methods, both of which are included in
    cryptography's bindings. This change adds Python wrappers for these
    methods in the `Connection` class.
    jlaine authored and mhils committed Feb 13, 2023
    Configuration menu
    Copy the full SHA
    17c645d View commit details
    Browse the repository at this point in the history
  2. update CHANGELOG

    mhils committed Feb 13, 2023
    Configuration menu
    Copy the full SHA
    f41e616 View commit details
    Browse the repository at this point in the history