mirror of
https://github.com/monero-project/monero.git
synced 2025-05-12 14:32:14 -04:00
dns: make ctor private
This ensures one can't instanciate a DNSResolver object by mistake, but uses the singleton. A separate create static function is added for cases where a new object is explicitely needed.
This commit is contained in:
parent
a1af0feb06
commit
5990344cb0
3 changed files with 21 additions and 7 deletions
|
@ -334,6 +334,11 @@ DNSResolver& DNSResolver::instance()
|
|||
return *staticInstance;
|
||||
}
|
||||
|
||||
DNSResolver DNSResolver::create()
|
||||
{
|
||||
return DNSResolver();
|
||||
}
|
||||
|
||||
bool DNSResolver::check_address_syntax(const char *addr)
|
||||
{
|
||||
// if string doesn't contain a dot, we won't consider it a url for now.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue