Using the TelnetSsl class |
The TelnetSsl class provides an easy to use client interface for securely communicating with telnet servers using SSL/TLS.
Example
// create new TelnetSsl instance connecting on port 2323 telnet = new TelnetSsl(hostname,2323);
// establish secure telnet connection telnet.connect();
// disconnect telnet.disconnect();
|