diff options
author | Darren Tucker <dtucker@zip.com.au> | 2003-06-28 04:38:01 +0200 |
---|---|---|
committer | Darren Tucker <dtucker@zip.com.au> | 2003-06-28 04:38:01 +0200 |
commit | 502d384b74fae68dd9e265f48c2026cef6c12806 (patch) | |
tree | 23aa1a738e0c94ffdc6efa196ab1bbb2a51afe8a /packet.h | |
parent | - markus@cvs.openbsd.org 2003/06/23 09:02:44 (diff) | |
download | openssh-502d384b74fae68dd9e265f48c2026cef6c12806.tar.xz openssh-502d384b74fae68dd9e265f48c2026cef6c12806.zip |
- 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.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 */ |