File: be_ssh.c

package info (click to toggle)
putty 0.63-10%2Bdeb8u1
  • links: PTS, VCS
  • area: main
  • in suites: jessie
  • size: 9,656 kB
  • ctags: 10,691
  • sloc: ansic: 81,916; objc: 3,115; perl: 2,448; sh: 1,169; python: 913; makefile: 148
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
};