be_ssh.c 401 B

1234567891011121314151617
  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. #include <stdio.h>
  8. #include "putty.h"
  9. const int be_default_protocol = PROT_SSH;
  10. Backend *backends[] = {
  11. &ssh_backend,
  12. NULL
  13. };