Programming Examples

ChilkatHOMEAndroid™ASPVisual BasicVB.NETC#iOS (IPhone)Objective-CC++CMFCDelphiFoxProJavaPerl
PHP ExtensionPHP ActiveXPythonPowerShellRubySQL ServerVBScript

C Examples

Bounced Mail
Bz2
Certificates/Keys
Charset
CSV
DKIM / DomainKey
Diffie-Hellman
DSA
Email Object
Encryption
FileAccess
FTP
HTML Conversion
HTTP
IMAP
MHT / HTML Email
MIME
NTLM
POP3
RSA
SMTP
Socket
Spider
SSH Key
SSH
SSH Tunnel
SFTP
Tar
Upload
XML
Zip
Amazon S3

 

 

 

 

 

 

 

 

SSH Tunnel using an HTTP proxy

Demonstrates how to establish an SSH tunnel that uses an HTTP proxy.

Downloads:

MS Windows Visual C/C++ Libraries
Linux/CentOS C/C++ Libraries
MAC OS X C/C++ Libraries
Solaris C/C++ Libraries
C++ Builder Libraries
#include <C_CkSshTunnel.h>

void ChilkatSample(void)
    {
    HCkSshTunnel sshTunnel;
    BOOL success;
    long listenPort;
    long maxWaitMs;

    sshTunnel = CkSshTunnel_Create();

    success = CkSshTunnel_UnlockComponent(sshTunnel,"30-day trial");
    if (success != TRUE) {
        printf("%s\n",CkSshTunnel_lastErrorText(sshTunnel));
        return;
    }

    //  The DestHostname / DestPort is the server with which we
    //  are ultimately communicating.
    CkSshTunnel_putDestPort(sshTunnel,1433);
    CkSshTunnel_putDestHostname(sshTunnel,"myServer.com");

    //  Provide information about the location of the SSH server,
    //  and the authentication to be used with it. This is the
    //  login information for the SSH server.
    CkSshTunnel_putSshHostname(sshTunnel,"192.168.1.108");
    CkSshTunnel_putSshPort(sshTunnel,22);
    CkSshTunnel_putSshLogin(sshTunnel,"mySshLogin");
    CkSshTunnel_putSshPassword(sshTunnel,"mySshPassword");

    //  To connect through an HTTP proxy, set the HttpProxyHostname
    //  and HttpProxyPort properties to the hostname (or IP address)
    //  and port of the HTTP proxy.  Typical port numbers used by
    //  HTTP proxy servers are 3128 and 8080.
    CkSshTunnel_putHttpProxyHostname(sshTunnel,"www.my-http-proxy.com");
    CkSshTunnel_putHttpProxyPort(sshTunnel,3128);

    //  Important:  Your HTTP proxy server must allow non-HTTP
    //  traffic to pass.  Otherwise this does not work.

    //  Start accepting connections in a background thread.
    //  The SSH tunnels are autonomously run in a background
    //  thread.  There is one background thread for accepting
    //  connections, and another for managing the tunnel pool.

    listenPort = 3316;
    success = CkSshTunnel_BeginAccepting(sshTunnel,listenPort);
    if (success != TRUE) {
        printf("%s\n",CkSshTunnel_lastErrorText(sshTunnel));
        return;
    }

    //  At this point you may write code to communicate with
    //  the server at DestHostname/DestPort.  This could be anything --
    //  it could be WinSock, ADO/ODBC code, Chilkat Socket, etc.
    //  However, instead of connecting directly to DestHostname/DestPort,
    //  your code would connect to localhost:3316 (because this
    //  is the listenPort of the SSH Tunnel

    //  This is what happens when you connect to localhost:3316
    //  1) The connection is accepted by the SSH tunnel
    //      background thread (which was started in the call to BeginAccepting).
    //  2) In the background thread, a connection to a remote SSH
    //      server is established via an HTTP proxy.
    //  3) Port-forwarding is setup so that the remote SSH server connects
    //     to the DestHostname/DestPort.
    //  4) Data sent by your application to localhost:3316 is ultimately forwarded to DestHostname/DestPort
    //   5) Data sent back from DestHostname/DestPort is forwarded back and received by your application

    //  When you're finished with the  connection, you may
    //  stop the background tunnel threads:
    //  Stop the background thread that accepts new connections:
    success = CkSshTunnel_StopAccepting(sshTunnel);
    if (success != TRUE) {
        printf("%s\n",CkSshTunnel_lastErrorText(sshTunnel));
        return;
    }

    //  If any background tunnels are still in existence (and managed
    //  by a single SSH tunnel pool background thread), stop them...

    maxWaitMs = 1000;
    success = CkSshTunnel_StopAllTunnels(sshTunnel,maxWaitMs);
    if (success != TRUE) {
        printf("%s\n",CkSshTunnel_lastErrorText(sshTunnel));
        return;
    }


    CkSshTunnel_Dispose(sshTunnel);

    }

Need a specific example? Send a request to support@chilkatsoft.com

© 2000-2010 Chilkat Software, Inc. All Rights Reserved.