summaryrefslogtreecommitdiff
path: root/packet.h
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2008-03-07 18:33:30 +1100
committerDamien Miller <djm@mindrot.org>2008-03-07 18:33:30 +1100
commit58226f60680753c55766f2ba637c9bced175c65a (patch)
treeccb1d64ef2adaba717a08a8616289e8a566f6c15 /packet.h
parent7cb2b56b1c7e5d0824edc507b01cd78a01019590 (diff)
- dtucker@cvs.openbsd.org 2008/02/22 20:44:02
[clientloop.c packet.c packet.h serverloop.c] Allow all SSH2 packet types, including UNIMPLEMENTED to reset the keepalive timer (bz #1307). ok markus@
Diffstat (limited to 'packet.h')
-rw-r--r--packet.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/packet.h b/packet.h
index 21ff45067..c1b9b3bd1 100644
--- a/packet.h
+++ b/packet.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: packet.h,v 1.45 2006/03/25 22:22:43 djm Exp $ */ 1/* $OpenBSD: packet.h,v 1.46 2008/02/22 20:44:02 dtucker Exp $ */
2 2
3/* 3/*
4 * Author: Tatu Ylonen <ylo@cs.hut.fi> 4 * Author: Tatu Ylonen <ylo@cs.hut.fi>
@@ -86,6 +86,7 @@ void tty_make_modes(int, struct termios *);
86void tty_parse_modes(int, int *); 86void tty_parse_modes(int, int *);
87 87
88extern u_int max_packet_size; 88extern u_int max_packet_size;
89extern int keep_alive_timeouts;
89int packet_set_maxsize(u_int); 90int packet_set_maxsize(u_int);
90#define packet_get_maxsize() max_packet_size 91#define packet_get_maxsize() max_packet_size
91 92