diff options
author | Ben Lindstrom <mouring@eviladmin.org> | 2001-03-05 07:17:49 +0100 |
---|---|---|
committer | Ben Lindstrom <mouring@eviladmin.org> | 2001-03-05 07:17:49 +0100 |
commit | 5699c5f9acb09d8e210856c3dd3cdeb4078d41a4 (patch) | |
tree | d865640d602faefb7f1b8e26648d1938c2caa224 /packet.h | |
parent | - markus@cvs.openbsd.org 2001/02/28 08:54:55 (diff) | |
download | openssh-5699c5f9acb09d8e210856c3dd3cdeb4078d41a4.tar.xz openssh-5699c5f9acb09d8e210856c3dd3cdeb4078d41a4.zip |
- 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.h | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -11,7 +11,7 @@ * called by a name other than "ssh" or "Secure Shell". */ -/* RCSID("$OpenBSD: packet.h,v 1.19 2001/01/13 18:32:50 markus Exp $"); */ +/* RCSID("$OpenBSD: packet.h,v 1.20 2001/02/28 09:57:07 markus Exp $"); */ #ifndef PACKET_H #define PACKET_H @@ -214,4 +214,7 @@ void packet_set_ssh2_format(void); /* returns remaining payload bytes */ int packet_remaining(void); +/* append an ignore message */ +void packet_inject_ignore(int sumlen); + #endif /* PACKET_H */ |