Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Refactoring of SOCKSClient to not depend on qbuf.
* Adapt unittests to support the changes in design * XXX disable some unittests that are no longer needed
- Loading branch information
Showing
with
130 additions
and 138 deletions.
- +10 −2 txsocksx/auth.py
- +72 −49 txsocksx/client.py
- +3 −0 txsocksx/errors.py
- +20 −10 txsocksx/parser.py
- +20 −72 txsocksx/test/test_client.py
- +5 −5 txsocksx/test/test_parser.py
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
| @@ -1,6 +1,9 @@ | ||
| from twisted.internet import error | ||
| import txsocksx.constants as c | ||
|
|
||
| class ParsingError(Exception): | ||
| pass | ||
|
|
||
| class SOCKSError(Exception): | ||
| pass | ||
|
|
||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
Oops, something went wrong.