be_ssh.c 442 B

12345678910111213141516
  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. const struct BackendVtable *const backends[] = {
  11. &ssh_backend,
  12. NULL
  13. };