OSDN Git Service

Enlarge buffers for replies on transferring files.
[ffftp/ffftp.git] / putty / BE_SSH.C
1 /*\r
2  * Linking module for programs that are restricted to only using SSH\r
3  * (pscp and psftp). These do not support selection of backend, but\r
4  * must still have a backends[] array mentioning SSH because\r
5  * settings.c will want to consult it during session load.\r
6  */\r
7 \r
8 #include <stdio.h>\r
9 #include "putty.h"\r
10 \r
11 const int be_default_protocol = PROT_SSH;\r
12 \r
13 Backend *backends[] = {\r
14     &ssh_backend,\r
15     NULL\r
16 };\r