From 7f9dc0a830d06013ec4b825727916dfcf607d053 Mon Sep 17 00:00:00 2001 From: Philipp Balzarek Date: Tue, 19 Nov 2013 17:09:31 +0100 Subject: [PATCH] structure Internal module --- source/Network/Xmpp/Internal.hs | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/source/Network/Xmpp/Internal.hs b/source/Network/Xmpp/Internal.hs index 256eabf..ecce166 100644 --- a/source/Network/Xmpp/Internal.hs +++ b/source/Network/Xmpp/Internal.hs @@ -17,22 +17,27 @@ -- top of this API. module Network.Xmpp.Internal - ( Stream(..) + ( -- * Stream + Stream(..) , StreamConfiguration(..) , StreamState(..) , StreamHandle(..) , StreamFeatures(..) , openStream , withStream + -- * TLS , tls + , TlsBehaviour(..) + -- * Auth + , SaslHandler , auth + -- * Stanzas + , Stanza(..) , pushStanza , pullStanza - , pushIQ , writeStanza - , SaslHandler - , Stanza(..) - , TlsBehaviour(..) + -- ** IQ + , pushIQ , iqErrorResponse , associatedErrorType )