diff options
Diffstat (limited to 'Swiften/Network/PlatformDomainNameAddressQuery.h')
-rw-r--r-- | Swiften/Network/PlatformDomainNameAddressQuery.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Swiften/Network/PlatformDomainNameAddressQuery.h b/Swiften/Network/PlatformDomainNameAddressQuery.h index e1dc05f..9e89086 100644 --- a/Swiften/Network/PlatformDomainNameAddressQuery.h +++ b/Swiften/Network/PlatformDomainNameAddressQuery.h @@ -21,5 +21,5 @@ namespace Swift { class PlatformDomainNameAddressQuery : public DomainNameAddressQuery, public PlatformDomainNameQuery, public boost::enable_shared_from_this<PlatformDomainNameAddressQuery>, public EventOwner { public: - PlatformDomainNameAddressQuery(const std::string& host, EventLoop* eventLoop, PlatformDomainNameResolver*); + PlatformDomainNameAddressQuery(const boost::optional<std::string>& host, EventLoop* eventLoop, PlatformDomainNameResolver*); void run(); @@ -32,4 +32,5 @@ namespace Swift { boost::asio::io_service ioService; std::string hostname; + bool hostnameValid; EventLoop* eventLoop; }; |