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

Draft: Add support for PyOpenSSL in paho.mqtt.python #849

Draft
wants to merge 5 commits into
base: master
Choose a base branch
from

Commits on Jun 6, 2024

  1. Add pyOpenSSL context support

    Signed-off-by: Walter BONETTI <[email protected]>
    IniterWorker committed Jun 6, 2024
    Configuration menu
    Copy the full SHA
    1b2d5e4 View commit details
    Browse the repository at this point in the history

Commits on Jul 5, 2024

  1. Remove debug print

    Signed-off-by: Walter BONETTI <[email protected]>
    IniterWorker committed Jul 5, 2024
    Configuration menu
    Copy the full SHA
    02b583c View commit details
    Browse the repository at this point in the history

Commits on Jul 29, 2024

  1. Fix: missing error-handling on PyOpenSSL errors

    Signed-off-by: Walter BONETTI <[email protected]>
    IniterWorker committed Jul 29, 2024
    Configuration menu
    Copy the full SHA
    6df0433 View commit details
    Browse the repository at this point in the history

Commits on Aug 1, 2024

  1. Fix: SSL.ZeroReturnError must raise ConnectionError

    SSL.ZeroReturnError is raised when the connection has been closed cleanly,
    and no more data will be received. This behavior indicates that the connection
    is no longer usable and thus can be considered a type of connection error.
    Therefore, it is appropriate to raise a ConnectionError when encountering SSL.ZeroReturnError.
    IniterWorker committed Aug 1, 2024
    Configuration menu
    Copy the full SHA
    de609df View commit details
    Browse the repository at this point in the history

Commits on Aug 21, 2024

  1. Fix: missing SysCallError and WantX509LookupError

    Signed-off-by: Walter BONETTI <[email protected]>
    IniterWorker committed Aug 21, 2024
    Configuration menu
    Copy the full SHA
    fd55230 View commit details
    Browse the repository at this point in the history