diff options
author | warptangent <warptangent@inbox.com> | 2015-05-19 01:51:15 -0700 |
---|---|---|
committer | warptangent <warptangent@inbox.com> | 2015-05-19 02:49:39 -0700 |
commit | a0fe18f63a38948ab2ed89db416a4a01bb6043d7 (patch) | |
tree | 376edd409babbfd53c5f30a881ca4f1859753814 /src/common/dns_utils.h | |
parent | Merge pull request #286 (diff) | |
download | monero-a0fe18f63a38948ab2ed89db416a4a01bb6043d7.tar.xz |
Revert "Allow name@domain.tld for OpenAlias lookups"
This reverts commit b18368b635ba08aea541ef52ebc74180822644a2.
Diffstat (limited to 'src/common/dns_utils.h')
-rw-r--r-- | src/common/dns_utils.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/common/dns_utils.h b/src/common/dns_utils.h index 4e48acb09..a16c7eff7 100644 --- a/src/common/dns_utils.h +++ b/src/common/dns_utils.h @@ -112,14 +112,11 @@ private: /** * @brief Checks a string to see if it looks like a URL * - * If the address looks good, but contains one @ symbol, replace that with a . - * e.g. donate@getmonero.org becomes donate.getmonero.org - * * @param addr the string to be checked * * @return true if it looks enough like a URL, false if not */ - bool check_address_syntax(std::string& addr); + bool check_address_syntax(const std::string& addr); DNSResolverData *m_data; }; // class DNSResolver |