diff options
author | djm <djm> | 2002-09-11 23:47:29 +0000 |
---|---|---|
committer | djm <djm> | 2002-09-11 23:47:29 +0000 |
commit | 0e9c47e8f6e2fe7fe447c9ad1e9e54020bde369a (patch) | |
tree | d25366dd4d7d7f052779df1747069a329ac90bce /monitor_wrap.h | |
parent | 2a4d1672dda3960113397ca1dc2c6ca93f332b4c (diff) | |
download | openssh-0e9c47e8f6e2fe7fe447c9ad1e9e54020bde369a.tar.gz |
- 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 'monitor_wrap.h')
-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 f97862b5..5e583e15 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); |