Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: JoshGlazebrook/socks
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 2.6.1
Choose a base ref
...
head repository: JoshGlazebrook/socks
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 2.8.4
Choose a head ref
  • 18 commits
  • 19 files changed
  • 8 contributors

Commits on Nov 2, 2021

  1. Update README.md (#75)

    yxwzaxns authored Nov 2, 2021
    Configuration menu
    Copy the full SHA
    1619a55 View commit details
    Browse the repository at this point in the history

Commits on Feb 5, 2022

  1. Fixed bug in createConnectionChain where host property was ignored wh…

    …ile building connection chain of proxies. Bumped version to 2.6.2 (#80)
    
    * Fixed bug in createConnectionChain where host property was ignored while building connection chain of proxies. Bumped version to 2.6.2
    JoshGlazebrook authored Feb 5, 2022
    Configuration menu
    Copy the full SHA
    9f347b3 View commit details
    Browse the repository at this point in the history

Commits on May 3, 2022

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

Commits on Jul 17, 2022

  1. Configuration menu
    Copy the full SHA
    b17d402 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ed272b1 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    e776150 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    96f729d View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    6ad8587 View commit details
    Browse the repository at this point in the history

Commits on Oct 2, 2022

  1. Bug fix createConnectionChain - creating a tunnel (#88)

    The current implementation returns a socket to the first proxy in the chain - this is the bug (reproduce: the example in the README does not work). The method "createConnectionChain" should return a socket to the final destination which is tunnelled through the given proxies. Therefore each iteration over the array of proxies must carry forward the socket. This PR is implementing this and hence fixing the bug.
    diva-exchange authored Oct 2, 2022
    Configuration menu
    Copy the full SHA
    6352745 View commit details
    Browse the repository at this point in the history
  2. 2.7.1

    JoshGlazebrook committed Oct 2, 2022
    Configuration menu
    Copy the full SHA
    76d013e View commit details
    Browse the repository at this point in the history

Commits on Feb 12, 2024

  1. remove ip package (#94)

    * remove ip package
    JoshGlazebrook authored Feb 12, 2024
    Configuration menu
    Copy the full SHA
    66b7f73 View commit details
    Browse the repository at this point in the history

Commits on Feb 23, 2024

  1. Configuration menu
    Copy the full SHA
    89d8c07 View commit details
    Browse the repository at this point in the history
  2. v280 (#98)

    JoshGlazebrook authored Feb 23, 2024
    Configuration menu
    Copy the full SHA
    99633ae View commit details
    Browse the repository at this point in the history

Commits on Apr 9, 2024

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

Commits on Apr 10, 2024

  1. 2.8.3

    JoshGlazebrook committed Apr 10, 2024
    Configuration menu
    Copy the full SHA
    a2a06d9 View commit details
    Browse the repository at this point in the history

Commits on Dec 13, 2024

  1. ipv4ToInt32 should return unsigned integer (#106)

    At least ‎SocksClient.createUDPFrame expects that: `buff.writeUInt32BE(ipv4ToInt32(options.remoteHost.host))`.
    
    `>>> 0` is fast and easy way to make integer unsigned:
    `[200,200,200,200].reduce((acc, part) => (acc << 8) + part, 0)`
    `-926365496`
    `[200,200,200,200].reduce((acc, part) => (acc << 8) + part, 0) >>> 0`
    `3368601800`
    peter23 authored Dec 13, 2024
    Configuration menu
    Copy the full SHA
    5094ebb View commit details
    Browse the repository at this point in the history

Commits on Feb 9, 2025

  1. Configuration menu
    Copy the full SHA
    8146521 View commit details
    Browse the repository at this point in the history
  2. 2.8.4

    JoshGlazebrook committed Feb 9, 2025
    Configuration menu
    Copy the full SHA
    f047ee4 View commit details
    Browse the repository at this point in the history
Loading