diff options
| author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2015-08-27 21:08:40 +0100 |
|---|---|---|
| committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2015-08-27 21:08:55 +0100 |
| commit | ae5f28cb51f51186998cf3c6b2dc1d56abe0174e (patch) | |
| tree | 9052ea4fc3eb23979cf4116507cf0aed73513f6e /src/common/dns_utils.h | |
| parent | f43d465da20864e9fc25fc3dd3f904c1a35bd8f9 (diff) | |
| download | monzero-core-ae5f28cb51f51186998cf3c6b2dc1d56abe0174e.tar.gz monzero-core-ae5f28cb51f51186998cf3c6b2dc1d56abe0174e.tar.xz monzero-core-ae5f28cb51f51186998cf3c6b2dc1d56abe0174e.zip | |
dns_utils: add a const where possible
Diffstat (limited to 'src/common/dns_utils.h')
| -rw-r--r-- | src/common/dns_utils.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/dns_utils.h b/src/common/dns_utils.h index 50e8001f1..332bceafe 100644 --- a/src/common/dns_utils.h +++ b/src/common/dns_utils.h @@ -137,7 +137,7 @@ private: * * @return true if it looks enough like a URL, false if not */ - bool check_address_syntax(const char *addr); + bool check_address_syntax(const char *addr) const; DNSResolverData *m_data; }; // class DNSResolver |
