summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Swiften/Client/ClientOptions.h')
-rw-r--r--Swiften/Client/ClientOptions.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/Swiften/Client/ClientOptions.h b/Swiften/Client/ClientOptions.h
index 25393e4..c09b987 100644
--- a/Swiften/Client/ClientOptions.h
+++ b/Swiften/Client/ClientOptions.h
@@ -35,12 +35,13 @@ namespace Swift {
useStreamCompression(true),
useTLS(UseTLSWhenAvailable),
allowPLAINWithoutTLS(false),
useStreamResumption(false),
forgetPassword(false),
useAcks(true),
+ singleSignOn(false),
manualHostname(""),
manualPort(-1),
proxyType(SystemConfiguredProxy),
manualProxyHostname(""),
manualProxyPort(-1),
boshHTTPConnectProxyAuthID(""),
@@ -90,12 +91,18 @@ namespace Swift {
* Use XEP-0198 acks in the stream when available.
* Default: true
*/
bool useAcks;
/**
+ * Use Single Sign On.
+ * Default: false
+ */
+ bool singleSignOn;
+
+ /**
* The hostname to connect to.
* Leave this empty for standard XMPP connection, based on the JID domain.
*/
std::string manualHostname;
/**