ipfs-chromium
null_dns_txt_lookup.h
1 #ifndef IPFS_CHROMIUM_NULL_DNS_TXT_LOOKUP_H
2 #define IPFS_CHROMIUM_NULL_DNS_TXT_LOOKUP_H
3 
4 #include "dns_txt_lookup.h"
5 
6 namespace ipfs::ctx {
9 class NullDnsTxtLookup : public DnsTxtLookup {
10  void SendDnsTextRequest(std::string,
11  DnsTextResultsCallback,
12  DnsTextCompleteCallback) override;
13 };
14 } // namespace ipfs::ctx
15 
16 #endif // IPFS_CHROMIUM_NULL_DNS_TXT_LOOKUP_H
Definition: dns_txt_lookup.h:11
Definition: null_dns_txt_lookup.h:9