Line data Source code
1 : #include "source/server/config_validation/dns.h" 2 : 3 : namespace Envoy { 4 : namespace Network { 5 : 6 : ActiveDnsQuery* ValidationDnsResolver::resolve(const std::string&, DnsLookupFamily, 7 0 : ResolveCb callback) { 8 0 : callback(DnsResolver::ResolutionStatus::Success, {}); 9 0 : return nullptr; 10 0 : } 11 : 12 : } // namespace Network 13 : } // namespace Envoy