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

Network: TorStream should inherit IO.Stream #56

Merged
merged 3 commits into from
Apr 25, 2023

Commits on Apr 12, 2023

  1. Network: TorStream should inherit IO.Stream

    This commit adds IO.Stream as a parent class
    to TorStream this extremely helps with compatibility
    and lowers the number of necessary changes to end
    users' code.
    aarani committed Apr 12, 2023
    Configuration menu
    Copy the full SHA
    730edf6 View commit details
    Browse the repository at this point in the history
  2. Network: use F#'s ChunkBySize method

    This commit removes the chunk helper function
    in favor the already existing F# method named
    ChunkBySize, not sure why I didn't find it before.
    aarani committed Apr 12, 2023
    Configuration menu
    Copy the full SHA
    f28e2ff View commit details
    Browse the repository at this point in the history

Commits on Apr 15, 2023

  1. Tests,Http: add test to actually browse facebook

    This test is mostly for flexing TorStream's
    compatiblity with SslStream.
    
    Also apparently some web servers don't include
    Content-Encoding header in that case we just assume
    that there's no special encoding.
    aarani committed Apr 15, 2023
    Configuration menu
    Copy the full SHA
    8a60fd1 View commit details
    Browse the repository at this point in the history