Changeset 574 for trunk/pdns/pdns/pdns_recursor.cc
- Timestamp:
- 03/10/06 14:05:40 (7 years ago)
- Files:
-
- 1 modified
-
trunk/pdns/pdns/pdns_recursor.cc (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/pdns/pdns/pdns_recursor.cc
r572 r574 517 517 } 518 518 519 void houseKeeping(void *)519 static void houseKeeping(void *) 520 520 { 521 521 static time_t last_stat, last_rootupdate, last_prune; 522 522 time_t now=time(0); 523 if(now - last_prune > 60) {523 if(now - last_prune > 300) { 524 524 RC.doPrune(); 525 525 int pruned=0;