File: be_ssh.c

package info (click to toggle)
putty 0.67-3%2Bdeb9u1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 10,972 kB
  • sloc: ansic: 86,516; perl: 3,115; objc: 3,088; sh: 1,547; python: 1,038; makefile: 144
file content (16 lines) | stat: -rw-r--r-- 401 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 * Linking module for programs that are restricted to only using SSH
 * (pscp and psftp). These do not support selection of backend, but
 * must still have a backends[] array mentioning SSH because
 * settings.c will want to consult it during session load.
 */

#include <stdio.h>
#include "putty.h"

const int be_default_protocol = PROT_SSH;

Backend *backends[] = {
    &ssh_backend,
    NULL
};