be_all.c 322 B

12345678910111213141516
  1. /*
  2. * Linking module for PuTTY proper: list the available backends
  3. * including ssh.
  4. */
  5. #include <windows.h>
  6. #include <stdio.h>
  7. #include "putty.h"
  8. struct backend_list backends[] = {
  9. {PROT_SSH, "ssh", &ssh_backend},
  10. {PROT_TELNET, "telnet", &telnet_backend},
  11. {PROT_RAW, "raw", &raw_backend},
  12. {0, NULL}
  13. };