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 {
7 class NullDnsTxtLookup : public DnsTxtLookup {
8  void SendDnsTextRequest(std::string,
9  DnsTextResultsCallback,
10  DnsTextCompleteCallback) override;
11 };
12 } // namespace ipfs::ctx
13 
14 #endif // IPFS_CHROMIUM_NULL_DNS_TXT_LOOKUP_H
Definition: dns_txt_lookup.h:8
Definition: null_dns_txt_lookup.h:7