This moves the implementation of the Logger::operator<<(const DNSName)
function to the right place. Freeing dnsdist from having to include
the logger.
/sodcrypto.hh
/sstuff.hh
/stamp-h1
+/compile
#include <string>
#include "dnswriter.hh"
-#include "logger.hh"
#include "misc.hh"
#include <boost/functional/hash.hpp>
}
return ret;
}
-
-
-Logger& Logger::operator<<(const DNSName &d)
-{
- *this<<d.toString();
-
- return *this;
-}
pt->d_urgency=Info;
return *this;
}
+
+Logger& Logger::operator<<(const DNSName &d)
+{
+ *this<<d.toString();
+
+ return *this;
+}