From 3d6f4fa5625b1370d2abcbb12c3d188e254fc7a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Love=20H=C3=B6rnquist=20=C3=85strand?= Date: Sun, 15 Jul 2007 09:03:39 +0000 Subject: [PATCH] Add plugin structures. git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@21551 ec53bebd-3082-4978-b11e-865c3cabbd6b --- lib/krb5/krb5.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lib/krb5/krb5.h b/lib/krb5/krb5.h index 1b268cd74..b6554296c 100644 --- a/lib/krb5/krb5.h +++ b/lib/krb5/krb5.h @@ -761,6 +761,12 @@ typedef struct krb5_sendto_ctx *krb5_sendto_ctx; typedef krb5_error_code (*krb5_sendto_ctx_func)(krb5_context, krb5_sendto_ctx, void *, const krb5_data *, int *); +struct krb5_plugin; +enum krb5_plugin_type { + PLUGIN_TYPE_DATA = 1, + PLUGIN_TYPE_FUNC +}; + struct credentials; /* this is to keep the compiler happy */ struct getargs; struct sockaddr;