summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjoe <joe@jerkface.net>2017-11-05 17:17:34 -0500
committerjoe <joe@jerkface.net>2017-11-05 17:17:34 -0500
commitcfc4d0bdfe2764fee19df171c639a08169c6d3ce (patch)
treee52bf8ae3c9443a68195664d72a43e9b0f6e53af
parent6f006163ecb6359f239044e4cf62e838fc8f7927 (diff)
Some comments.
-rw-r--r--Presence/XMPPServer.hs2
1 files changed, 2 insertions, 0 deletions
diff --git a/Presence/XMPPServer.hs b/Presence/XMPPServer.hs
index e78e4dd9..79167267 100644
--- a/Presence/XMPPServer.hs
+++ b/Presence/XMPPServer.hs
@@ -185,7 +185,9 @@ data XMPPServerParameters =
185 -- , xmppLookupClientJID :: ConnectionKey -> IO Text 185 -- , xmppLookupClientJID :: ConnectionKey -> IO Text
186 , xmppTellClientNameOfPeer :: ConnectionKey -> [Text] -> IO Text 186 , xmppTellClientNameOfPeer :: ConnectionKey -> [Text] -> IO Text
187 , xmppDeliverMessage :: (IO ()) -> Stanza -> IO () 187 , xmppDeliverMessage :: (IO ()) -> Stanza -> IO ()
188 -- | Called whenever a local client's presence changes.
188 , xmppInformClientPresence :: ConnectionKey -> Stanza -> IO () 189 , xmppInformClientPresence :: ConnectionKey -> Stanza -> IO ()
190 -- | Called whenever a remote peer's presence changes.
189 , xmppInformPeerPresence :: ConnectionKey -> Stanza -> IO () 191 , xmppInformPeerPresence :: ConnectionKey -> Stanza -> IO ()
190 , xmppAnswerProbe :: ConnectionKey -> Stanza -> TChan Stanza -> IO () 192 , xmppAnswerProbe :: ConnectionKey -> Stanza -> TChan Stanza -> IO ()
191 , xmppClientSubscriptionRequest :: IO () -> ConnectionKey -> Stanza -> TChan Stanza -> IO () 193 , xmppClientSubscriptionRequest :: IO () -> ConnectionKey -> Stanza -> TChan Stanza -> IO ()