Add _del, and replace arg to store.

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@3289 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Johan Danielsson
1997-08-30 19:27:44 +00:00
parent 755def591e
commit 265ff8b0d3

View File

@@ -53,7 +53,7 @@ typedef struct HDB{
krb5_error_code (*close)(krb5_context, struct HDB*);
krb5_error_code (*fetch)(krb5_context, struct HDB*, hdb_entry*);
krb5_error_code (*store)(krb5_context, struct HDB*, hdb_entry*);
krb5_error_code (*store)(krb5_context, struct HDB*, int, hdb_entry*);
krb5_error_code (*delete)(krb5_context, struct HDB*, hdb_entry*);
krb5_error_code (*firstkey)(krb5_context, struct HDB*, hdb_entry*);
krb5_error_code (*nextkey)(krb5_context, struct HDB*, hdb_entry*);
@@ -63,6 +63,7 @@ typedef struct HDB{
krb5_error_code (*_get)(krb5_context, struct HDB*, krb5_data, krb5_data*);
krb5_error_code (*_put)(krb5_context, struct HDB*, int,
krb5_data, krb5_data);
krb5_error_code (*_del)(krb5_context, struct HDB*, krb5_data);
}HDB;
void hdb_free_entry(krb5_context, hdb_entry*);