summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/isode/stroke/client/ClientOptions.java')
-rw-r--r--src/com/isode/stroke/client/ClientOptions.java45
1 files changed, 45 insertions, 0 deletions
diff --git a/src/com/isode/stroke/client/ClientOptions.java b/src/com/isode/stroke/client/ClientOptions.java
new file mode 100644
index 0000000..dad4204
--- /dev/null
+++ b/src/com/isode/stroke/client/ClientOptions.java
@@ -0,0 +1,45 @@
+/*
+ * Copyright (c) 2011 Isode Limited, London, England.
+ * All rights reserved.
+ */
+/*
+ * Copyright (c) 2011 Remko Tron¨on.
+ * All rights reserved.
+ */
+package com.isode.stroke.client;
+
+/**
+ *
+ */
+public class ClientOptions {
+
+ enum UseTLS {
+
+ NeverUseTLS,
+ UseTLSWhenAvailable
+ };
+
+ public ClientOptions() {
+ useStreamCompression = true;
+ useTLS = UseTLS.UseTLSWhenAvailable;
+ useStreamResumption = false;
+ }
+ /**
+ * Whether ZLib stream compression should be used when available.
+ *
+ * Default: true
+ */
+ public boolean useStreamCompression;
+ /**
+ * Sets whether TLS encryption should be used.
+ *
+ * Default: UseTLSWhenAvailable
+ */
+ public UseTLS useTLS;
+ /**
+ * Use XEP-196 stream resumption when available.
+ *
+ * Default: false
+ */
+ public boolean useStreamResumption;
+}