diff options
author | Damien Miller <djm@mindrot.org> | 2002-09-12 01:47:29 +0200 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2002-09-12 01:47:29 +0200 |
commit | 25162f2518f72035b50b254bfeb5b89d018223a6 (patch) | |
tree | e5e50812ca90d5ce4cd3692505e9de48205f0b8a /monitor_wrap.h | |
parent | - (djm) OpenBSD CVS Sync (diff) | |
download | openssh-25162f2518f72035b50b254bfeb5b89d018223a6.tar.xz openssh-25162f2518f72035b50b254bfeb5b89d018223a6.zip |
- itojun@cvs.openbsd.org 2002/09/09 06:48:06
[auth1.c auth.h auth-krb5.c monitor.c monitor.h]
[monitor_wrap.c monitor_wrap.h]
kerberos support for privsep. confirmed to work by lha@stacken.kth.se
patch from markus
Diffstat (limited to '')
-rw-r--r-- | monitor_wrap.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/monitor_wrap.h b/monitor_wrap.h index f97862b5b..5e583e15b 100644 --- a/monitor_wrap.h +++ b/monitor_wrap.h @@ -1,4 +1,4 @@ -/* $OpenBSD: monitor_wrap.h,v 1.6 2002/06/30 21:59:45 deraadt Exp $ */ +/* $OpenBSD: monitor_wrap.h,v 1.7 2002/09/09 06:48:06 itojun Exp $ */ /* * Copyright 2002 Niels Provos <provos@citi.umich.edu> @@ -83,6 +83,13 @@ int mm_bsdauth_respond(void *, u_int, char **); int mm_skey_query(void *, char **, char **, u_int *, char ***, u_int **); int mm_skey_respond(void *, u_int, char **); +/* auth_krb5 */ +#ifdef KRB5 +/* auth and reply are really krb5_data objects, but we don't want to + * include all of the krb5 headers here */ +int mm_auth_krb5(void *authctxt, void *auth, char **client, void *reply); +#endif + /* zlib allocation hooks */ void *mm_zalloc(struct mm_master *, u_int, u_int); |