MacTCP returns canonical names with a trailing dot. We don't want this, so
[u/mdw/putty] / be_all.c
CommitLineData
89ee5268 1/*
2 * Linking module for PuTTY proper: list the available backends
3 * including ssh.
4 */
5
89ee5268 6#include <stdio.h>
7#include "putty.h"
8
9struct backend_list backends[] = {
10 {PROT_SSH, "ssh", &ssh_backend},
11 {PROT_TELNET, "telnet", &telnet_backend},
c91409da 12 {PROT_RLOGIN, "rlogin", &rlogin_backend},
89ee5268 13 {PROT_RAW, "raw", &raw_backend},
14 {0, NULL}
15};