summaryrefslogtreecommitdiff
path: root/packet.h
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2001-03-05 06:17:49 +0000
committerBen Lindstrom <mouring@eviladmin.org>2001-03-05 06:17:49 +0000
commit5699c5f9acb09d8e210856c3dd3cdeb4078d41a4 (patch)
treed865640d602faefb7f1b8e26648d1938c2caa224 /packet.h
parent7fbd455c780e96065dc2bd8d96d21f0c017c0f99 (diff)
- markus@cvs.openbsd.org 2001/02/28 09:57:07
[packet.c packet.h sshconnect2.c] in ssh protocol v2 use ignore messages for padding (instead of trailing \0).
Diffstat (limited to 'packet.h')
-rw-r--r--packet.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/packet.h b/packet.h
index 00f0c3778..059bb27a0 100644
--- a/packet.h
+++ b/packet.h
@@ -11,7 +11,7 @@
11 * called by a name other than "ssh" or "Secure Shell". 11 * called by a name other than "ssh" or "Secure Shell".
12 */ 12 */
13 13
14/* RCSID("$OpenBSD: packet.h,v 1.19 2001/01/13 18:32:50 markus Exp $"); */ 14/* RCSID("$OpenBSD: packet.h,v 1.20 2001/02/28 09:57:07 markus Exp $"); */
15 15
16#ifndef PACKET_H 16#ifndef PACKET_H
17#define PACKET_H 17#define PACKET_H
@@ -214,4 +214,7 @@ void packet_set_ssh2_format(void);
214/* returns remaining payload bytes */ 214/* returns remaining payload bytes */
215int packet_remaining(void); 215int packet_remaining(void);
216 216
217/* append an ignore message */
218void packet_inject_ignore(int sumlen);
219
217#endif /* PACKET_H */ 220#endif /* PACKET_H */