summaryrefslogtreecommitdiff
path: root/packet.h
diff options
context:
space:
mode:
authordtucker <dtucker>2003-06-28 02:38:01 +0000
committerdtucker <dtucker>2003-06-28 02:38:01 +0000
commitc121265fd6713f9049b97bfb07d50f7410375586 (patch)
tree0c99112d99faa29516dc3f79019d089f6076e4da /packet.h
parentb855a3ebafa83b0502de3bb11eaf5ed93ea7d581 (diff)
downloadopenssh-c121265fd6713f9049b97bfb07d50f7410375586.tar.gz
- markus@cvs.openbsd.org 2003/06/24 08:23:46
[auth2-hostbased.c auth2-pubkey.c auth2.c channels.c key.c key.h monitor.c packet.c packet.h serverloop.c sshconnect2.c sshd.c] int -> u_int; ok djm@, deraadt@, mouring@
Diffstat (limited to 'packet.h')
-rw-r--r--packet.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/packet.h b/packet.h
index fa000d68..7732fafb 100644
--- a/packet.h
+++ b/packet.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: packet.h,v 1.39 2003/04/08 20:21:29 itojun Exp $ */
+/* $OpenBSD: packet.h,v 1.40 2003/06/24 08:23:46 markus Exp $ */
/*
* Author: Tatu Ylonen <ylo@cs.hut.fi>
@@ -81,8 +81,8 @@ void packet_add_padding(u_char);
void tty_make_modes(int, struct termios *);
void tty_parse_modes(int, int *);
-extern int max_packet_size;
-int packet_set_maxsize(int);
+extern u_int max_packet_size;
+u_int packet_set_maxsize(u_int);
#define packet_get_maxsize() max_packet_size
/* don't allow remaining bytes after the end of the message */