summaryrefslogtreecommitdiffstats
path: root/third_party/libjingle/files/talk/xmpp/plainsaslhandler.h
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/libjingle/files/talk/xmpp/plainsaslhandler.h')
-rw-r--r--third_party/libjingle/files/talk/xmpp/plainsaslhandler.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/third_party/libjingle/files/talk/xmpp/plainsaslhandler.h b/third_party/libjingle/files/talk/xmpp/plainsaslhandler.h
index e7d44b9..39e4fb0 100644
--- a/third_party/libjingle/files/talk/xmpp/plainsaslhandler.h
+++ b/third_party/libjingle/files/talk/xmpp/plainsaslhandler.h
@@ -28,8 +28,10 @@
#ifndef _PLAINSASLHANDLER_H_
#define _PLAINSASLHANDLER_H_
-#include "talk/xmpp/saslhandler.h"
#include <algorithm>
+#include <string>
+
+#include "talk/xmpp/saslhandler.h"
namespace buzz {
@@ -66,6 +68,12 @@ public:
}
return NULL;
}
+
+ virtual bool GetTlsServerInfo(const talk_base::SocketAddress& server,
+ std::string* tls_server_hostname,
+ std::string* tls_server_domain) {
+ return false;
+ }
private:
Jid jid_;