Changeset 656 for trunk/pdns/pdns/recursor_cache.hh
- Timestamp:
- 04/04/06 17:26:07 (4 years ago)
- Files:
-
- 1 modified
-
trunk/pdns/pdns/recursor_cache.hh (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/pdns/pdns/recursor_cache.hh
r646 r656 12 12 #include <boost/tuple/tuple_comparison.hpp> 13 13 #include <boost/multi_index/key_extractors.hpp> 14 #include <boost/multi_index/sequenced_index.hpp> 14 15 #include <boost/version.hpp> 15 16 #if BOOST_VERSION >= 103300 … … 32 33 void replace(const string &qname, const QType& qt, const set<DNSResourceRecord>& content); 33 34 void doPrune(void); 35 void doSlash(int perc); 34 36 void doDumpAndClose(int fd); 35 37 void doWipeCache(const string& name); … … 103 105 > 104 106 >, 105 ordered_non_unique<const_mem_fun<CacheEntry,uint32_t,&CacheEntry::getTTD>>107 sequenced<> 106 108 > 107 109 > cache_t; … … 109 111 private: 110 112 cache_t d_cache; 111 pair<cache_t:: const_iterator, cache_t::const_iterator> d_cachecache;113 pair<cache_t::iterator, cache_t::iterator> d_cachecache; 112 114 string d_cachedqname; 113 115 bool d_cachecachevalid;