diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2003-12-16 15:49:52 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2003-12-16 15:49:52 +0000 |
commit | 658fe8285793280d65d8e33e4e04d39dcaae653b (patch) | |
tree | 31499205e66c9cb7956c67b82b3d42dc2374632f /usr.bin/ssh/clientloop.h | |
parent | 7dee09e8d4855a2485b607217d7616cb968ccbd9 (diff) |
application layer keep alive (ServerAliveInterval ServerAliveCountMax)
for ssh(1), similar to the sshd(8) option; ok beck@; with help from
jmc and dtucker@
Diffstat (limited to 'usr.bin/ssh/clientloop.h')
-rw-r--r-- | usr.bin/ssh/clientloop.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/clientloop.h b/usr.bin/ssh/clientloop.h index 8056a40c3ab..56af06bc146 100644 --- a/usr.bin/ssh/clientloop.h +++ b/usr.bin/ssh/clientloop.h @@ -1,4 +1,4 @@ -/* $OpenBSD: clientloop.h,v 1.7 2002/04/22 21:04:52 markus Exp $ */ +/* $OpenBSD: clientloop.h,v 1.8 2003/12/16 15:49:51 markus Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> @@ -37,4 +37,4 @@ /* Client side main loop for the interactive session. */ int client_loop(int, int, int); -void client_global_request_reply(int type, u_int32_t seq, void *ctxt); +void client_global_request_reply_fwd(int, u_int32_t, void *); |