v0.2.0
版本发布时间: 2014-09-27 23:33:59
clue/reactphp-socks最新发布版本:v1.4.0(2022-08-31 22:43:41)
-
BC break / Feature: Simplify constructors by making parameters optional. (#10)
The
Factory
has been removed, you can now create instances of theClient
andServer
yourself:// old $factory = new Factory($loop, $dns); $client = $factory->createClient('localhost', 9050); $server = $factory->createSever($socket); // new $client = new Client($loop, 'localhost', 9050); $server = new Server($loop, $socket);
-
BC break: Remove HTTP support and link to clue/buzz-react instead. (#9)
HTTP operates on a different layer than this low-level SOCKS library. Removing this reduces the footprint of this library.
Upgrading? Check the README for details.
-
Fix: Refactored to support other, faster loops (libev/libevent) (#12)
-
Explicitly list dependencies, clean up examples and extend test suite significantly