aboutsummaryrefslogtreecommitdiff
path: root/src/common/dns_utils.h
diff options
context:
space:
mode:
authorThomas Winget <tewinget@gmail.com>2015-04-29 21:31:34 -0400
committerThomas Winget <tewinget@gmail.com>2015-04-29 21:31:34 -0400
commitb18368b635ba08aea541ef52ebc74180822644a2 (patch)
tree6182c3a269af8ac820f1306b446c219833a9eef4 /src/common/dns_utils.h
parentupdate lmdb64 (diff)
downloadmonero-b18368b635ba08aea541ef52ebc74180822644a2.tar.xz
Allow name@domain.tld for OpenAlias lookups
Diffstat (limited to '')
-rw-r--r--src/common/dns_utils.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/common/dns_utils.h b/src/common/dns_utils.h
index a16c7eff7..4e48acb09 100644
--- a/src/common/dns_utils.h
+++ b/src/common/dns_utils.h
@@ -112,11 +112,14 @@ 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(const std::string& addr);
+ bool check_address_syntax(std::string& addr);
DNSResolverData *m_data;
}; // class DNSResolver