summaryrefslogtreecommitdiff
path: root/usr.bin/ssh/monitor_wrap.h
diff options
context:
space:
mode:
authorJun-ichiro itojun Hagino <itojun@cvs.openbsd.org>2002-09-09 06:48:07 +0000
committerJun-ichiro itojun Hagino <itojun@cvs.openbsd.org>2002-09-09 06:48:07 +0000
commit83fdc24668a9d57c325ce9546910a58f31911b09 (patch)
tree1408ccc0632e66d0732bcfec59166311be61a6d3 /usr.bin/ssh/monitor_wrap.h
parent8dff1497674cc6cacb26f7980ced78c6e8ae8b64 (diff)
kerberos support for privsep. confirmed to work by lha@stacken.kth.se
patch from markus
Diffstat (limited to 'usr.bin/ssh/monitor_wrap.h')
-rw-r--r--usr.bin/ssh/monitor_wrap.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/usr.bin/ssh/monitor_wrap.h b/usr.bin/ssh/monitor_wrap.h
index ee887c859a6..c3e43ed3fc2 100644
--- a/usr.bin/ssh/monitor_wrap.h
+++ b/usr.bin/ssh/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>
@@ -79,6 +79,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);