diff options
Diffstat (limited to 'Swiften/TLS/ServerIdentityVerifier.h')
-rw-r--r-- | Swiften/TLS/ServerIdentityVerifier.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Swiften/TLS/ServerIdentityVerifier.h b/Swiften/TLS/ServerIdentityVerifier.h index a001a5e..05bb5f0 100644 --- a/Swiften/TLS/ServerIdentityVerifier.h +++ b/Swiften/TLS/ServerIdentityVerifier.h @@ -8,7 +8,7 @@ #include <boost/shared_ptr.hpp> -#include "Swiften/Base/String.h" +#include <string> #include "Swiften/JID/JID.h" #include "Swiften/TLS/Certificate.h" @@ -20,11 +20,11 @@ namespace Swift { bool certificateVerifies(Certificate::ref); private: - bool matchesDomain(const String&); - bool matchesAddress(const String&); + bool matchesDomain(const std::string&); + bool matchesAddress(const std::string&); private: - String domain; - String encodedDomain; + std::string domain; + std::string encodedDomain; }; } |