Mercurial > 510Connectbot
annotate src/net/sourceforge/jsocks/AuthenticationNone.java @ 278:d7e088fa2123 ganymed
start conversion from trilead to ganymed
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Fri, 18 Jul 2014 16:45:43 -0700 |
parents | 0ce5cc452d02 |
children | 205ee2873330 |
rev | line source |
---|---|
0 | 1 package net.sourceforge.jsocks; |
2 | |
3 /** | |
4 SOCKS5 none authentication. Dummy class does almost nothing. | |
5 */ | |
6 public class AuthenticationNone implements Authentication { | |
7 | |
8 public Object[] doSocksAuthentication(int methodId, | |
9 java.net.Socket proxySocket) | |
10 throws java.io.IOException { | |
11 if (methodId != 0) return null; | |
12 | |
13 return new Object[] { proxySocket.getInputStream(), | |
14 proxySocket.getOutputStream() | |
15 }; | |
16 } | |
17 } |