diff options
Diffstat (limited to 'usr.bin/ssh/packet.h')
-rw-r--r-- | usr.bin/ssh/packet.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/usr.bin/ssh/packet.h b/usr.bin/ssh/packet.h index 0f5e7104997..6430bb0be68 100644 --- a/usr.bin/ssh/packet.h +++ b/usr.bin/ssh/packet.h @@ -11,7 +11,7 @@ * called by a name other than "ssh" or "Secure Shell". */ -/* RCSID("$OpenBSD: packet.h,v 1.22 2001/04/14 16:33:20 stevesk Exp $"); */ +/* RCSID("$OpenBSD: packet.h,v 1.23 2001/05/28 23:58:35 markus Exp $"); */ #ifndef PACKET_H #define PACKET_H @@ -71,7 +71,7 @@ void packet_set_interactive(int interactive); int packet_is_interactive(void); /* Starts constructing a packet to send. */ -void packet_start(int type); +void packet_start(u_char type); /* Appends a character to the packet data. */ void packet_put_char(int ch); @@ -208,9 +208,6 @@ do { \ int packet_connection_is_on_socket(void); int packet_connection_is_ipv4(void); -/* enable SSH2 packet format */ -void packet_set_ssh2_format(void); - /* returns remaining payload bytes */ int packet_remaining(void); |