Sample code for 30+ languages & platforms
C

SSH Tunnel Listener Activity Log

See more SSH Tunnel Examples

Demonstrates the listener-log properties KeepAcceptLog, AcceptLog, and AcceptLogPath, which record the activity of the background listener thread started by BeginAccepting.

Note: The log paths are relative to the application's current working directory. Absolute paths may also be used.

Background: Because the listener runs on a background thread, an activity log is often the only practical way to see what it is doing — which connections it accepted and when. KeepAcceptLog must be enabled for the in-memory AcceptLog to be populated; AcceptLogPath is an independent file-based log that persists across the run. This log covers the listener specifically, as distinct from the TunnelLog that records the SSH tunnel threads.

Chilkat C Downloads

C
#include <C_CkSshTunnel.h>

void ChilkatSample(void)
    {
    BOOL success;
    HCkSshTunnel tunnel;
    int sshPort;
    const char *password;
    int listenPort;
    BOOL waitForThreadExit;

    success = FALSE;

    //  Demonstrates the SshTunnel listener-log properties KeepAcceptLog, AcceptLog, and AcceptLogPath.
    //  
    //  These log the activity of the background listener thread started by BeginAccepting.

    tunnel = CkSshTunnel_Create();

    //  Retain the listener activity log in memory so it can be read from the AcceptLog property.
    CkSshTunnel_putKeepAcceptLog(tunnel,TRUE);

    //  Optionally also write the listener activity to a file (separate from the in-memory log).
    CkSshTunnel_putAcceptLogPath(tunnel,"qa_output/accept.log");

    CkSshTunnel_putDestHostname(tunnel,"db.internal.example.com");
    CkSshTunnel_putDestPort(tunnel,5432);

    sshPort = 22;
    success = CkSshTunnel_Connect(tunnel,"ssh.example.com",sshPort);
    if (success == FALSE) {
        printf("%s\n",CkSshTunnel_lastErrorText(tunnel));
        CkSshTunnel_Dispose(tunnel);
        return;
    }

    //  Normally you would not hard-code the password in source.  You should instead obtain it
    //  from an interactive prompt, environment variable, or a secrets vault.
    password = "mySshPassword";

    success = CkSshTunnel_AuthenticatePw(tunnel,"mySshLogin",password);
    if (success == FALSE) {
        printf("%s\n",CkSshTunnel_lastErrorText(tunnel));
        CkSshTunnel_Dispose(tunnel);
        return;
    }

    listenPort = 1080;
    success = CkSshTunnel_BeginAccepting(tunnel,listenPort);
    if (success == FALSE) {
        printf("%s\n",CkSshTunnel_lastErrorText(tunnel));
        CkSshTunnel_Dispose(tunnel);
        return;
    }

    //  ... the listener accepts connections for a while ...

    //  Read the accumulated in-memory listener log.
    printf("%s\n",CkSshTunnel_acceptLog(tunnel));

    waitForThreadExit = TRUE;
    success = CkSshTunnel_CloseTunnel(tunnel,waitForThreadExit);
    if (success == FALSE) {
        printf("%s\n",CkSshTunnel_lastErrorText(tunnel));
        CkSshTunnel_Dispose(tunnel);
        return;
    }



    CkSshTunnel_Dispose(tunnel);

    }