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

Support connections through SOCKS5 proxies #153

Open
wants to merge 4 commits into
base: master
Choose a base branch
from

Commits on Nov 16, 2020

  1. Support connections through SOCKS5 proxies

    Implement support for SOCKS5 proxies. Implement a new proxy wrapper
    that handles SOCKS5 connection, authentication and requesting
    connections to the actual Kafka broker endpoints.
    
    The proxy can be configured via a new keyword argument `socks5_proxy`
    to consumers, producers or admin client. The value is URL with optional
    username and password. E.g.
    `socks5://user:secret@proxy.example.com:10800`
    
    The implementation is done in state machine that makes progress on
    repeated calls to connect_ex. The rationale with this bit strange
    design is to minimize amount of changes on the actual BrokerConnection
    object.
    hnousiainen committed Nov 16, 2020
    Configuration menu
    Copy the full SHA
    b77202d View commit details
    Browse the repository at this point in the history

Commits on Mar 9, 2024

  1. Configuration menu
    Copy the full SHA
    641a76d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    eee0e01 View commit details
    Browse the repository at this point in the history

Commits on Mar 29, 2024

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