diff options
author | Thomas Winget <tewinget@gmail.com> | 2014-09-18 09:07:46 -0400 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2014-09-23 22:59:57 +0200 |
commit | 1dece111cc7a97101f53fb3944385c1249ed6e40 (patch) | |
tree | f92e5218bef5dda3ed736227f4a0b301ac1be010 /src/common/dns_utils.h | |
parent | Fixed artifacts from cherry-picking devel->master (diff) | |
download | monero-1dece111cc7a97101f53fb3944385c1249ed6e40.tar.xz |
Added function to check syntax of URL for DNS lookup
For now, simply checks for '.' character, but that will be easy to
change in the future if necessary/desired.
Diffstat (limited to 'src/common/dns_utils.h')
-rw-r--r-- | src/common/dns_utils.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/common/dns_utils.h b/src/common/dns_utils.h index e57e55861..375f6ba30 100644 --- a/src/common/dns_utils.h +++ b/src/common/dns_utils.h @@ -101,6 +101,15 @@ public: private: + /** + * @brief Checks a string to see if it looks like a URL + * + * @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); + DNSResolverData *m_data; }; // class DNSResolver |