mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-06-30 19:12:48 -05:00
Bring the OS X front end up to date with recent changes to the main
code base. [originally from svn r7296]
This commit is contained in:
10
testback.c
10
testback.c
@ -46,7 +46,7 @@ static int null_sendbuffer(void *);
|
||||
static void null_size(void *, int, int);
|
||||
static void null_special(void *, Telnet_Special);
|
||||
static const struct telnet_special *null_get_specials(void *handle);
|
||||
static Socket null_socket(void *);
|
||||
static int null_connected(void *);
|
||||
static int null_exitcode(void *);
|
||||
static int null_sendok(void *);
|
||||
static int null_ldisc(void *, int);
|
||||
@ -57,14 +57,14 @@ static int null_cfg_info(void *);
|
||||
|
||||
Backend null_backend = {
|
||||
null_init, null_free, null_reconfig, null_send, null_sendbuffer, null_size,
|
||||
null_special, null_get_specials, null_socket, null_exitcode, null_sendok,
|
||||
null_special, null_get_specials, null_connected, null_exitcode, null_sendok,
|
||||
null_ldisc, null_provide_ldisc, null_provide_logctx, null_unthrottle,
|
||||
null_cfg_info, 0
|
||||
};
|
||||
|
||||
Backend loop_backend = {
|
||||
loop_init, loop_free, null_reconfig, loop_send, null_sendbuffer, null_size,
|
||||
null_special, null_get_specials, null_socket, null_exitcode, null_sendok,
|
||||
null_special, null_get_specials, null_connected, null_exitcode, null_sendok,
|
||||
null_ldisc, null_provide_ldisc, null_provide_logctx, null_unthrottle,
|
||||
null_cfg_info, 0
|
||||
};
|
||||
@ -134,9 +134,9 @@ static const struct telnet_special *null_get_specials (void *handle) {
|
||||
return NULL;
|
||||
}
|
||||
|
||||
static Socket null_socket(void *handle) {
|
||||
static int null_connected(void *handle) {
|
||||
|
||||
return NULL;
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int null_exitcode(void *handle) {
|
||||
|
Reference in New Issue
Block a user