M Network/Protocol/XMPP/Client.hs => Network/Protocol/XMPP/Client.hs +2 -2
@@ 30,9 30,9 @@ import Data.ByteString (ByteString)
import qualified Data.Text as T
import qualified Text.XML.LibXML.SAX as SAX
-import qualified Network.Protocol.XMPP.Authentication as A
+import qualified Network.Protocol.XMPP.Client.Authentication as A
import qualified Network.Protocol.XMPP.Connections as C
-import qualified Network.Protocol.XMPP.Features as F
+import qualified Network.Protocol.XMPP.Client.Features as F
import qualified Network.Protocol.XMPP.Handle as H
import qualified Network.Protocol.XMPP.Stream as S
import Network.Protocol.XMPP.XML ( getTree, putTree
R Network/Protocol/XMPP/Authentication.hs => Network/Protocol/XMPP/Client/Authentication.hs +1 -1
@@ 13,7 13,7 @@
-- You should have received a copy of the GNU General Public License
-- along with this program. If not, see <http://www.gnu.org/licenses/>.
-module Network.Protocol.XMPP.Authentication
+module Network.Protocol.XMPP.Client.Authentication
( Result(..)
, authenticate
) where
R Network/Protocol/XMPP/Features.hs => Network/Protocol/XMPP/Client/Features.hs +1 -1
@@ 13,7 13,7 @@
-- You should have received a copy of the GNU General Public License
-- along with this program. If not, see <http://www.gnu.org/licenses/>.
-module Network.Protocol.XMPP.Features
+module Network.Protocol.XMPP.Client.Features
( Feature (..)
, parseFeatures
, parseFeature
M network-protocol-xmpp.cabal => network-protocol-xmpp.cabal +2 -2
@@ 36,11 36,11 @@ library
Network.Protocol.XMPP
other-modules:
- Network.Protocol.XMPP.Authentication
Network.Protocol.XMPP.Client
+ Network.Protocol.XMPP.Client.Authentication
+ Network.Protocol.XMPP.Client.Features
Network.Protocol.XMPP.Component
Network.Protocol.XMPP.Connections
- Network.Protocol.XMPP.Features
Network.Protocol.XMPP.Handle
Network.Protocol.XMPP.JID
Network.Protocol.XMPP.Stanza