aboutsummaryrefslogtreecommitdiffstats
path: root/src/net/sourceforge/jsocks/AuthenticationNone.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/sourceforge/jsocks/AuthenticationNone.java')
-rw-r--r--src/net/sourceforge/jsocks/AuthenticationNone.java17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/net/sourceforge/jsocks/AuthenticationNone.java b/src/net/sourceforge/jsocks/AuthenticationNone.java
deleted file mode 100644
index f28193a..0000000
--- a/src/net/sourceforge/jsocks/AuthenticationNone.java
+++ /dev/null
@@ -1,17 +0,0 @@
-package net.sourceforge.jsocks;
-
-/**
- SOCKS5 none authentication. Dummy class does almost nothing.
-*/
-public class AuthenticationNone implements Authentication{
-
- public Object[] doSocksAuthentication(int methodId,
- java.net.Socket proxySocket)
- throws java.io.IOException{
-
- if(methodId!=0) return null;
-
- return new Object[] { proxySocket.getInputStream(),
- proxySocket.getOutputStream()};
- }
-}