1234567891011121314151617181920212223242526272829303132333435 |
- /*
- * Linking module for PuTTYtel: list the available backends not
- * including ssh.
- */
- #include <stdio.h>
- #include "putty.h"
- const int be_default_protocol = PROT_TELNET;
- const char *const appname = "PuTTYtel";
- Backend *backends[] = {
- &telnet_backend,
- &rlogin_backend,
- &raw_backend,
- &serial_backend,
- NULL
- };
- /*
- * Stub implementations of functions not used in non-ssh versions.
- */
- void random_save_seed(void)
- {
- }
- void random_destroy_seed(void)
- {
- }
- void noise_ultralight(unsigned long data)
- {
- }
|