KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > socks > AuthenticationNone


1 package socks;
2
3 /**
4   SOCKS5 none authentication. Dummy class does almost nothing.
5 */

6 public class AuthenticationNone implements Authentication{
7
8     public Object JavaDoc[] doSocksAuthentication(int methodId,
9                                           java.net.Socket JavaDoc proxySocket)
10            throws java.io.IOException JavaDoc{
11
12        if(methodId!=0) return null;
13
14        return new Object JavaDoc[] { proxySocket.getInputStream(),
15                              proxySocket.getOutputStream()};
16    }
17 }
18
Popular Tags