| 12 | |
| 13 | |
| 14 | class Socks5Error(ProxyError): |
| 15 | errorCodes = ("Succeeded", |
| 16 | "General SOCKS server failure", |
| 17 | "Connection not allowed by ruleset", |
| 18 | "Network unreachable", |
| 19 | "Host unreachable", |
| 20 | "Connection refused", |
| 21 | "TTL expired", |
| 22 | "Command not supported", |
| 23 | "Address type not supported", |
| 24 | "Unknown error") |
| 25 | |
| 26 | |
| 27 | class Socks5(Proxy): |