diff options
author | Sam Hartman <hartmans@mit.edu> | 2010-09-29 21:29:14 +0000 |
---|---|---|
committer | Sam Hartman <hartmans@mit.edu> | 2010-09-29 21:29:14 +0000 |
commit | 36ad7da6dc4dbd1090b2f39b93b30b3ac8eee396 (patch) | |
tree | a96683b12490351b9a16ddc041b9e5714f95658a /src/include/k5-int.h | |
parent | 59388bb146c8268f070d93b893e1bc2e96e1e837 (diff) | |
download | krb5-36ad7da6dc4dbd1090b2f39b93b30b3ac8eee396.tar.gz krb5-36ad7da6dc4dbd1090b2f39b93b30b3ac8eee396.tar.xz krb5-36ad7da6dc4dbd1090b2f39b93b30b3ac8eee396.zip |
kadm5_hook: new plugin interface
Implement http://k5wiki.kerberos.org/wiki/Projects/Kadmin_hook_interface
This provides an interface that allows a plugin to track kadmin
operations. This can be used for projects like the krb5-sync project.
ticket: 6791
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@24375 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/include/k5-int.h')
-rw-r--r-- | src/include/k5-int.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/k5-int.h b/src/include/k5-int.h index efffa3b5e..750f989c9 100644 --- a/src/include/k5-int.h +++ b/src/include/k5-int.h @@ -1517,7 +1517,8 @@ struct plugin_interface { /* A list of plugin interface IDs. Make sure to increment * PLUGIN_NUM_INTERFACES when a new interface is added. */ #define PLUGIN_INTERFACE_PWQUAL 0 -#define PLUGIN_NUM_INTERFACES 1 +#define PLUGIN_INTERFACE_KADM5_HOOK 1 +#define PLUGIN_NUM_INTERFACES 2 /* Retrieve the plugin module of type interface_id and name modname, * storing the result into module. */ |