source: branches/2.2/jabberit_messenger/java_source/src/nu/fw/jeti/plugins/filetransfer/socks5/jsocks/AuthenticationNone.java @ 3102

Revision 3102, 517 bytes checked in by amuller, 14 years ago (diff)

Ticket #986 - Efetuado merge para o Branch 2.2( atualizacao do modulo)

  • Property svn:executable set to *
Line 
1package nu.fw.jeti.plugins.filetransfer.socks5.jsocks;
2
3/**
4  SOCKS5 none authentication. Dummy class does almost nothing.
5*/
6public 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}
Note: See TracBrowser for help on using the repository browser.