Package tigase.io
Class TelnetClient
- java.lang.Object
-
- tigase.io.TelnetClient
-
- All Implemented Interfaces:
SampleSocketThread.SocketHandler
public class TelnetClient extends java.lang.Object implements SampleSocketThread.SocketHandler
This is sample class demonstrating how to usetigase.iolibrary for TLS/SSL client connection. This is simple telnet client class which can connect to remote server using plain connection or SSL.
Created: Sun Aug 6 15:14:49 2006- Author:
- Artur Hefczyc
-
-
Constructor Summary
Constructors Constructor Description TelnetClient(java.lang.String hostname, int port)Creates a newTelnetClientinstance.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description voidhandleIOInterface(IOInterface ioifc)voidhandleSocketAccept(java.nio.channels.SocketChannel sc)static java.lang.Stringhelp()static voidmain(java.lang.String[] args)static voidparseParams(java.lang.String[] args)static voidturnDebugOn()static java.lang.Stringversion()voidwriteData(java.lang.String data)
-
-
-
Method Detail
-
help
public static java.lang.String help()
-
main
public static void main(java.lang.String[] args) throws java.lang.Exception- Throws:
java.lang.Exception
-
parseParams
public static void parseParams(java.lang.String[] args) throws java.lang.Exception- Throws:
java.lang.Exception
-
turnDebugOn
public static void turnDebugOn()
-
version
public static java.lang.String version()
-
handleIOInterface
public void handleIOInterface(IOInterface ioifc) throws java.io.IOException
- Specified by:
handleIOInterfacein interfaceSampleSocketThread.SocketHandler- Throws:
java.io.IOException
-
handleSocketAccept
public void handleSocketAccept(java.nio.channels.SocketChannel sc)
- Specified by:
handleSocketAcceptin interfaceSampleSocketThread.SocketHandler
-
writeData
public void writeData(java.lang.String data) throws java.io.IOException- Throws:
java.io.IOException
-
-