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: tor proxy #65

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

DRAFT: tor proxy #65

wants to merge 8 commits into from

Commits on Oct 28, 2023

  1. Client,Network,Services: add TorClient

    This commit aims to introduce a simple API for end users.
    
    Working with network especially Tor routers is flaky and
    delegating retry logic implementation to users causes NOnion to
    be unreliable in CI and in normal use, this commit introduces
    retry logic in some places where it's needed the most. This
    should hopefully make NOnion more reliable.
    aarani committed Oct 28, 2023
    Configuration menu
    Copy the full SHA
    420e8db View commit details
    Browse the repository at this point in the history

Commits on Oct 29, 2023

  1. README: add F# documentation

    aarani committed Oct 29, 2023
    Configuration menu
    Copy the full SHA
    dc53d69 View commit details
    Browse the repository at this point in the history

Commits on Dec 3, 2023

  1. README: change fork url

    aarani committed Dec 3, 2023
    Configuration menu
    Copy the full SHA
    1938e69 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #8 from aarani/highLevel

    Client,Network,Services: add TorClient
    aarani committed Dec 3, 2023
    Configuration menu
    Copy the full SHA
    0938049 View commit details
    Browse the repository at this point in the history

Commits on Dec 10, 2023

  1. Services,Tests: create HS streams on demand (#10)

    There are multiple usecases when you need multiple
    streams for your communication with HS client (e.g
    sending multiple http requests), this was not supported
    before and this commit fixes that.
    aarani committed Dec 10, 2023
    Configuration menu
    Copy the full SHA
    5180574 View commit details
    Browse the repository at this point in the history

Commits on Mar 31, 2024

  1. NOnion: use tor official mirror (#13)

    Tor Github mirror has been removed [1], this commit changes the
    URLs to the official GitLab.
    
    [1] https://github.com/torproject/tor/commi/27d4ba90f6dbf0c80d518a358b9600ae789509e4
    aarani committed Mar 31, 2024
    Configuration menu
    Copy the full SHA
    f488d76 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f110b6f View commit details
    Browse the repository at this point in the history
  3. Proxy,Tests: add TorProxy

    This commit adds a helper class that provides an HTTP proxy for
    easy usage of NOnion alongside things like HttpClient that don't
    support communicating over custom streams.
    aarani committed Mar 31, 2024
    Configuration menu
    Copy the full SHA
    b585eb2 View commit details
    Browse the repository at this point in the history