mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-11 01:24:46 -04:00
add overmem method
This commit is contained in:
parent
ce0c777a38
commit
4a30ede93d
1 changed files with 9 additions and 2 deletions
|
|
@ -15,7 +15,7 @@
|
|||
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
/* $Id: sdb.c,v 1.8 2000/08/26 01:36:55 bwelling Exp $ */
|
||||
/* $Id: sdb.c,v 1.9 2000/08/31 13:04:47 marka Exp $ */
|
||||
|
||||
#include <config.h>
|
||||
|
||||
|
|
@ -1071,6 +1071,12 @@ ispersistent(dns_db_t *db) {
|
|||
return (ISC_TRUE);
|
||||
}
|
||||
|
||||
static void
|
||||
overmem(dns_db_t *db, isc_boolean_t overmem) {
|
||||
UNUSED(db);
|
||||
UNUSED(overmem);
|
||||
}
|
||||
|
||||
|
||||
static dns_dbmethods_t sdb_methods = {
|
||||
attach,
|
||||
|
|
@ -1097,7 +1103,8 @@ static dns_dbmethods_t sdb_methods = {
|
|||
deleterdataset,
|
||||
issecure,
|
||||
nodecount,
|
||||
ispersistent
|
||||
ispersistent,
|
||||
overmem
|
||||
};
|
||||
|
||||
isc_result_t
|
||||
|
|
|
|||
Loading…
Reference in a new issue