comparison app/src/main/java/net/sourceforge/jsocks/AuthenticationNone.java @ 438:d29cce60f393

migrate from Eclipse to Android Studio
author Carl Byington <carl@five-ten-sg.com>
date Thu, 03 Dec 2015 11:23:55 -0800
parents src/net/sourceforge/jsocks/AuthenticationNone.java@205ee2873330
children
comparison
equal deleted inserted replaced
437:208b31032318 438:d29cce60f393
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
12 if(methodId!=0) return null;
13
14 return new Object[] { proxySocket.getInputStream(),
15 proxySocket.getOutputStream()};
16 }
17 }