mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-07-05 21:42:47 -05:00
Implement zlib@openssh.com, using the rekey-after-userauth method suggested in
the wishlist entry. [originally from svn r9120] [this svn revision also touched putty-website,putty-wishlist]
This commit is contained in:
3
ssh.h
3
ssh.h
@ -251,6 +251,9 @@ struct ssh_signkey {
|
||||
|
||||
struct ssh_compress {
|
||||
char *name;
|
||||
/* For zlib@openssh.com: if non-NULL, this name will be considered once
|
||||
* userauth has completed successfully. */
|
||||
char *delayed_name;
|
||||
void *(*compress_init) (void);
|
||||
void (*compress_cleanup) (void *);
|
||||
int (*compress) (void *, unsigned char *block, int len,
|
||||
|
Reference in New Issue
Block a user