summaryrefslogtreecommitdiff
path: root/kex.c
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2002-03-22 02:30:41 +0000
committerBen Lindstrom <mouring@eviladmin.org>2002-03-22 02:30:41 +0000
commit7a2073c50b92c053594d48a651ebafae052a71ed (patch)
tree7cfceb925262a07a356b0667e19f33eec497b602 /kex.c
parent0f345f5ee1e71e1e9f8780ec13b2da23b6a9f7f8 (diff)
- provos@cvs.openbsd.org 2002/03/18 17:50:31
[auth-bsdauth.c auth-options.c auth-rh-rsa.c auth-rsa.c auth-skey.c auth.h auth1.c auth2-chall.c auth2.c kex.c kex.h kexdh.c kexgex.c servconf.c session.h servconf.h serverloop.c session.c sshd.c] integrate privilege separated openssh; its turned off by default for now. work done by me and markus@ applied, but outside of ensure that smaller code bits migrated with their owners.. no work was tried to 'fix' it to work. =) Later project!
Diffstat (limited to 'kex.c')
-rw-r--r--kex.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/kex.c b/kex.c
index bf8fd95b4..8097ab0f2 100644
--- a/kex.c
+++ b/kex.c
@@ -23,7 +23,7 @@
23 */ 23 */
24 24
25#include "includes.h" 25#include "includes.h"
26RCSID("$OpenBSD: kex.c,v 1.47 2002/02/28 15:46:33 markus Exp $"); 26RCSID("$OpenBSD: kex.c,v 1.48 2002/03/18 17:50:31 provos Exp $");
27 27
28#include <openssl/crypto.h> 28#include <openssl/crypto.h>
29 29
@@ -40,9 +40,15 @@ RCSID("$OpenBSD: kex.c,v 1.47 2002/02/28 15:46:33 markus Exp $");
40#include "mac.h" 40#include "mac.h"
41#include "match.h" 41#include "match.h"
42#include "dispatch.h" 42#include "dispatch.h"
43#include "monitor.h"
43 44
44#define KEX_COOKIE_LEN 16 45#define KEX_COOKIE_LEN 16
45 46
47/* Use privilege separation for sshd */
48int use_privsep;
49struct monitor *monitor;
50
51
46/* prototype */ 52/* prototype */
47static void kex_kexinit_finish(Kex *); 53static void kex_kexinit_finish(Kex *);
48static void kex_choose_conf(Kex *); 54static void kex_choose_conf(Kex *);