summaryrefslogtreecommitdiff
path: root/kex.h
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2001-04-04 23:46:07 +0000
committerBen Lindstrom <mouring@eviladmin.org>2001-04-04 23:46:07 +0000
commitbe2cc43c3ad65dc7af5bdd350eccecefa05c80ff (patch)
tree87743bbb2501bd579088303769f73c4f79fd0ad7 /kex.h
parent78c261ab4afa9236b54b51663eb35460d2fea635 (diff)
- markus@cvs.openbsd.org 2001/04/04 20:25:38
[channels.c channels.h clientloop.c kex.c kex.h serverloop.c sshconnect2.c sshd.c] more robust rekeying don't send channel data after rekeying is started.
Diffstat (limited to 'kex.h')
-rw-r--r--kex.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/kex.h b/kex.h
index 54134221f..8758804c5 100644
--- a/kex.h
+++ b/kex.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: kex.h,v 1.21 2001/04/04 14:34:58 markus Exp $ */ 1/* $OpenBSD: kex.h,v 1.22 2001/04/04 20:25:37 markus Exp $ */
2 2
3/* 3/*
4 * Copyright (c) 2000 Markus Friedl. All rights reserved. 4 * Copyright (c) 2000 Markus Friedl. All rights reserved.
@@ -95,7 +95,7 @@ struct Newkeys {
95struct Kex { 95struct Kex {
96 u_char *session_id; 96 u_char *session_id;
97 int session_id_len; 97 int session_id_len;
98 Newkeys *keys[MODE_MAX]; 98 Newkeys *newkeys[MODE_MAX];
99 int we_need; 99 int we_need;
100 int server; 100 int server;
101 char *name; 101 char *name;
@@ -103,7 +103,7 @@ struct Kex {
103 int kex_type; 103 int kex_type;
104 Buffer my; 104 Buffer my;
105 Buffer peer; 105 Buffer peer;
106 int newkeys; 106 int done;
107 int flags; 107 int flags;
108 char *client_version_string; 108 char *client_version_string;
109 char *server_version_string; 109 char *server_version_string;