diff options
author | Greg Hudson <ghudson@mit.edu> | 2010-09-01 16:40:22 +0000 |
---|---|---|
committer | Greg Hudson <ghudson@mit.edu> | 2010-09-01 16:40:22 +0000 |
commit | bd399cad888d90e99da3e5787040b34da857a34e (patch) | |
tree | af01e6e0bd5b66a3dd3e05959f34e61623114916 /src/include/k5-int.h | |
parent | 18fda42e0ef82c51228ba7cbfb3915330f0c352e (diff) | |
download | krb5-bd399cad888d90e99da3e5787040b34da857a34e.tar.gz krb5-bd399cad888d90e99da3e5787040b34da857a34e.tar.xz krb5-bd399cad888d90e99da3e5787040b34da857a34e.zip |
Password quality pluggable interface
Merge branches/plugins2 to trunk. Adds a password quality pluggable
interface described in this project page:
http://k5wiki.kerberos.org/wiki/Projects/Password_quality_pluggable_interface
ticket: 6765
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@24284 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 ec701c1df..4b2fdd25d 100644 --- a/src/include/k5-int.h +++ b/src/include/k5-int.h @@ -1516,7 +1516,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_NUM_INTERFACES 0 +#define PLUGIN_INTERFACE_PWQUAL 0 +#define PLUGIN_NUM_INTERFACES 1 /* Retrieve the plugin module of type interface_id and name modname, * storing the result into module. */ |