Mercurial > 510Connectbot
comparison src/net/sourceforge/jsocks/SocksException.java @ 354:3c16508419fe
update jsocks to 2011-03-19
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Fri, 01 Aug 2014 11:39:46 -0700 |
parents | 205ee2873330 |
children |
comparison
equal
deleted
inserted
replaced
353:20412de44c06 | 354:3c16508419fe |
---|---|
50 return errString; | 50 return errString; |
51 } | 51 } |
52 | 52 |
53 static final String UNASSIGNED_ERROR_MESSAGE = | 53 static final String UNASSIGNED_ERROR_MESSAGE = |
54 "Unknown error message"; | 54 "Unknown error message"; |
55 static final String serverReplyMessage[] = { | 55 static final String serverReplyMessage[] = { |
56 "Succeeded", | 56 "Succeeded", |
57 "General SOCKS server failure", | 57 "General SOCKS server failure", |
58 "Connection not allowed by ruleset", | 58 "Connection not allowed by ruleset", |
59 "Network unreachable", | 59 "Network unreachable", |
60 "Host unreachable", | 60 "Host unreachable", |
61 "Connection refused", | 61 "Connection refused", |
70 "None of Authentication methods are supported", | 70 "None of Authentication methods are supported", |
71 "Authentication failed", | 71 "Authentication failed", |
72 "General SOCKS fault" }; | 72 "General SOCKS fault" }; |
73 | 73 |
74 String errString; | 74 String errString; |
75 int errCode; | 75 public int errCode; |
76 | 76 |
77 }//End of SocksException class | 77 }//End of SocksException class |
78 | 78 |