diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2001-05-28 23:58:36 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2001-05-28 23:58:36 +0000 |
commit | ee19c0fdc5150a2ab3782d13a6759c1210ca4456 (patch) | |
tree | 2d0a5a765e771318cd0dc11802d4c9b4c539f6da /usr.bin/ssh/packet.h | |
parent | 05ac4448c6bb81c84fffa338d9422551ec99c8ac (diff) |
remove some lines, simplify.
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); |