diff options
Diffstat (limited to 'kexdhs.c')
-rw-r--r-- | kexdhs.c | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: kexdhs.c,v 1.6 2006/07/22 20:48:23 stevesk Exp $ */ | 1 | /* $OpenBSD: kexdhs.c,v 1.7 2006/08/03 03:34:42 deraadt Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2001 Markus Friedl. All rights reserved. | 3 | * Copyright (c) 2001 Markus Friedl. All rights reserved. |
4 | * | 4 | * |
@@ -25,15 +25,22 @@ | |||
25 | 25 | ||
26 | #include "includes.h" | 26 | #include "includes.h" |
27 | 27 | ||
28 | #include <sys/types.h> | ||
28 | #include <string.h> | 29 | #include <string.h> |
30 | #include <signal.h> | ||
29 | 31 | ||
30 | #include "xmalloc.h" | 32 | #include "xmalloc.h" |
33 | #include "buffer.h" | ||
31 | #include "key.h" | 34 | #include "key.h" |
35 | #include "cipher.h" | ||
32 | #include "kex.h" | 36 | #include "kex.h" |
33 | #include "log.h" | 37 | #include "log.h" |
34 | #include "packet.h" | 38 | #include "packet.h" |
35 | #include "dh.h" | 39 | #include "dh.h" |
36 | #include "ssh2.h" | 40 | #include "ssh2.h" |
41 | #ifdef GSSAPI | ||
42 | #include "ssh-gss.h" | ||
43 | #endif | ||
37 | #include "monitor_wrap.h" | 44 | #include "monitor_wrap.h" |
38 | 45 | ||
39 | void | 46 | void |