summaryrefslogtreecommitdiff
path: root/packet.h
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2003-06-28 12:38:01 +1000
committerDarren Tucker <dtucker@zip.com.au>2003-06-28 12:38:01 +1000
commit502d384b74fae68dd9e265f48c2026cef6c12806 (patch)
tree23aa1a738e0c94ffdc6efa196ab1bbb2a51afe8a /packet.h
parent674f71d77e3683746a960a13da39d2d68cdcafad (diff)
- 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 fa000d686..7732fafb7 100644
--- a/packet.h
+++ b/packet.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: packet.h,v 1.39 2003/04/08 20:21:29 itojun Exp $ */ 1/* $OpenBSD: packet.h,v 1.40 2003/06/24 08:23:46 markus Exp $ */
2 2
3/* 3/*
4 * Author: Tatu Ylonen <ylo@cs.hut.fi> 4 * Author: Tatu Ylonen <ylo@cs.hut.fi>
@@ -81,8 +81,8 @@ void packet_add_padding(u_char);
81void tty_make_modes(int, struct termios *); 81void tty_make_modes(int, struct termios *);
82void tty_parse_modes(int, int *); 82void tty_parse_modes(int, int *);
83 83
84extern int max_packet_size; 84extern u_int max_packet_size;
85int packet_set_maxsize(int); 85u_int packet_set_maxsize(u_int);
86#define packet_get_maxsize() max_packet_size 86#define packet_get_maxsize() max_packet_size
87 87
88/* don't allow remaining bytes after the end of the message */ 88/* don't allow remaining bytes after the end of the message */