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 )