aboutsummaryrefslogtreecommitdiff
path: root/src/include/krb5
diff options
context:
space:
mode:
authorTom Yu <tlyu@mit.edu>2006-06-15 18:22:17 +0000
committerTom Yu <tlyu@mit.edu>2006-06-15 18:22:17 +0000
commit27fbd87c2fcf23b45484341007ed8590f7d68b30 (patch)
tree054796ef32a51be8d75b533fe57551dd98922c93 /src/include/krb5
parent49d7b41568a81a89332315e77373c1f61117a05b (diff)
downloadkrb5-27fbd87c2fcf23b45484341007ed8590f7d68b30.zip
krb5-27fbd87c2fcf23b45484341007ed8590f7d68b30.tar.gz
krb5-27fbd87c2fcf23b45484341007ed8590f7d68b30.tar.bz2
remove spuriously resurrected file from merge
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@18139 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/include/krb5')
-rw-r--r--src/include/krb5/locate.h30
1 files changed, 0 insertions, 30 deletions
diff --git a/src/include/krb5/locate.h b/src/include/krb5/locate.h
deleted file mode 100644
index 552369c..0000000
--- a/src/include/krb5/locate.h
+++ /dev/null
@@ -1,30 +0,0 @@
-#ifndef K5_PLUGIN_H_INCLUDED
-#define K5_PLUGIN_H_INCLUDED
-#include <krb5/krb5.h>
-
-enum locate_service_type {
- locate_service_kdc = 1,
- locate_service_master_kdc,
- locate_service_kadmin,
- locate_service_krb524,
- locate_service_kpasswd
-};
-
-struct krb5plugin_service_locate_ftable {
- int vmajor, vminor;
- /* Per-context setup and teardown. Returned void* blob is
- private to the plugin. */
- krb5_error_code (*init)(krb5_context, void **);
- void (*fini)(void *);
- /* Callback function returns non-zero if the plugin function
- should quit and return; this may be because of an error, or may
- indicate we've already contacted the service, whatever. The
- lookup function should only return an error if it detects a
- problem, not if the callback function tells it to quit. */
- krb5_error_code (*lookup)(void *,
- enum locate_service_type svc, const char *realm,
- int socktype, int family,
- int (*cbfunc)(void *,int,struct sockaddr *),
- void *cbdata);
-};
-#endif