|
Lines 455-460
client_check_window_change(void)
Link Here
|
| 455 |
} |
455 |
} |
| 456 |
|
456 |
|
| 457 |
static void |
457 |
static void |
|
|
458 |
client_global_ignore(int type, u_int32_t seq, void *ctxt) |
| 459 |
{ |
| 460 |
server_alive_timeouts = 0; |
| 461 |
} |
| 462 |
|
| 463 |
static void |
| 464 |
client_global_unimplemented(int type, u_int32_t seq, void *ctxt) |
| 465 |
{ |
| 466 |
server_alive_timeouts = 0; |
| 467 |
debug("Received SSH2_MSG_UNIMPLEMENTED for %u", seq); |
| 468 |
} |
| 469 |
|
| 470 |
static void |
| 458 |
client_global_request_reply(int type, u_int32_t seq, void *ctxt) |
471 |
client_global_request_reply(int type, u_int32_t seq, void *ctxt) |
| 459 |
{ |
472 |
{ |
| 460 |
server_alive_timeouts = 0; |
473 |
server_alive_timeouts = 0; |
|
Lines 2002-2007
client_init_dispatch_20(void)
Link Here
|
| 2002 |
/* global request reply messages */ |
2015 |
/* global request reply messages */ |
| 2003 |
dispatch_set(SSH2_MSG_REQUEST_FAILURE, &client_global_request_reply); |
2016 |
dispatch_set(SSH2_MSG_REQUEST_FAILURE, &client_global_request_reply); |
| 2004 |
dispatch_set(SSH2_MSG_REQUEST_SUCCESS, &client_global_request_reply); |
2017 |
dispatch_set(SSH2_MSG_REQUEST_SUCCESS, &client_global_request_reply); |
|
|
2018 |
dispatch_set(SSH2_MSG_IGNORE, &client_global_ignore); |
| 2019 |
dispatch_set(SSH2_MSG_UNIMPLEMENTED, &client_global_unimplemented); |
| 2005 |
} |
2020 |
} |
| 2006 |
static void |
2021 |
static void |
| 2007 |
client_init_dispatch_13(void) |
2022 |
client_init_dispatch_13(void) |