|
4 | 4 | SocksConnectionError, InvalidServerReply, InvalidServerVersion |
5 | 5 | ) |
6 | 6 | from .helpers import ( |
7 | | - SocksAddr, Socks4Addr, Socks5Addr, Socks4Auth, Socks5Auth |
| 7 | + SocksAddr, Socks4Addr, Socks5Addr, Socks4Auth, |
| 8 | + Socks5Auth, HttpProxyAddr, HttpProxyAuth |
8 | 9 | ) |
9 | 10 | from .protocols import Socks4Protocol, Socks5Protocol, DEFAULT_LIMIT |
10 | 11 |
|
11 | 12 | __version__ = '0.1.4' |
12 | 13 |
|
13 | 14 | __all__ = ('Socks4Protocol', 'Socks5Protocol', 'Socks4Auth', |
14 | | - 'Socks5Auth', 'Socks4Addr', 'Socks5Addr', 'SocksError', |
15 | | - 'NoAcceptableAuthMethods', 'LoginAuthenticationFailed', |
16 | | - 'SocksConnectionError', 'InvalidServerVersion', |
17 | | - 'InvalidServerReply', 'create_connection', 'open_connection') |
| 15 | + 'Socks5Auth', 'Socks4Addr', 'Socks5Addr', 'HttpProxyAddr', |
| 16 | + 'HttpProxyAuth', 'SocksError', 'NoAcceptableAuthMethods', |
| 17 | + 'LoginAuthenticationFailed', 'SocksConnectionError', |
| 18 | + 'InvalidServerVersion', 'InvalidServerReply', |
| 19 | + 'create_connection', 'open_connection') |
18 | 20 |
|
19 | 21 |
|
20 | 22 | @asyncio.coroutine |
|
0 commit comments