Changeset 646 for trunk/pdns/pdns/recursor_cache.hh
- Timestamp:
- 03/31/06 08:46:58 (4 years ago)
- Files:
-
- 1 modified
-
trunk/pdns/pdns/recursor_cache.hh (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/pdns/pdns/recursor_cache.hh
r623 r646 25 25 { 26 26 public: 27 MemRecursorCache() : d_cachecachevalid(false) 28 {} 27 29 unsigned int size(); 28 30 unsigned int bytes(); … … 107 109 private: 108 110 cache_t d_cache; 109 111 pair<cache_t::const_iterator, cache_t::const_iterator> d_cachecache; 112 string d_cachedqname; 113 bool d_cachecachevalid; 110 114 }; 111 115