Raise the default scrollback from 200 to 2000 lines. The former was
[u/mdw/putty] / be_ssh.c
CommitLineData
f4371346 1/*
2 * Linking module for programs that are restricted to only using SSH
3 * (pscp and psftp). These do not support selection of backend, but
4 * must still have a backends[] array mentioning SSH because
5 * settings.c will want to consult it during session load.
6 */
7
8#include <stdio.h>
9#include "putty.h"
10
11const int be_default_protocol = PROT_SSH;
12
13Backend *backends[] = {
14 &ssh_backend,
15 NULL
16};