2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-30 22:15:20 +00:00

808. [func] Add 'rndc flush' to flush the server's cache.

This commit is contained in:
Brian Wellington
2001-04-11 20:37:50 +00:00
parent 9ffcab1e9a
commit c20ffa38de
13 changed files with 244 additions and 66 deletions

View File

@@ -15,7 +15,7 @@
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: view.c,v 1.98 2001/03/26 21:33:00 bwelling Exp $ */
/* $Id: view.c,v 1.99 2001/04/11 20:37:45 bwelling Exp $ */
#include <config.h>
@@ -1093,3 +1093,21 @@ dns_view_dumpdbtostream(dns_view_t *view, FILE *fp) {
#endif
return (ISC_R_SUCCESS);
}
isc_result_t
dns_view_flushcache(dns_view_t *view) {
isc_result_t result;
REQUIRE(DNS_VIEW_VALID(view));
if (view->cachedb == NULL)
return (ISC_R_SUCCESS);
result = dns_cache_flush(view->cache);
if (result != ISC_R_SUCCESS)
return (result);
dns_db_detach(&view->cachedb);
dns_cache_attachdb(view->cache, &view->cachedb);
dns_adb_flush(view->adb);
return (ISC_R_SUCCESS);
}