be_none.c 346 B

1234567891011121314151617
  1. /*
  2. * Linking module for PSCP: list the available backends, but
  3. * without accompanying function suites. Used only for name
  4. * lookups.
  5. */
  6. #include <windows.h>
  7. #include <stdio.h>
  8. #include "putty.h"
  9. struct backend_list backends[] = {
  10. {PROT_SSH, "ssh", NULL},
  11. {PROT_TELNET, "telnet", NULL},
  12. {PROT_RAW, "raw", NULL},
  13. {0, NULL}
  14. };