diff options
Diffstat (limited to 'Presence')
-rw-r--r-- | Presence/XMPPServer.hs | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/Presence/XMPPServer.hs b/Presence/XMPPServer.hs index 8f32535a..8845ea72 100644 --- a/Presence/XMPPServer.hs +++ b/Presence/XMPPServer.hs | |||
@@ -248,9 +248,6 @@ wlog s = putStrLn s >> hFlush stdout | |||
248 | wlogb :: ByteString -> IO () | 248 | wlogb :: ByteString -> IO () |
249 | wlogb s = Strict8.putStrLn s >> hFlush stdout | 249 | wlogb s = Strict8.putStrLn s >> hFlush stdout |
250 | 250 | ||
251 | renderBuilderFlush :: Monad m => XML.RenderSettings -> Conduit (Flush Event) m (Flush Builder) | ||
252 | renderBuilderFlush = undefined | ||
253 | |||
254 | xmlStream :: ReadCommand -> WriteCommand -> ( Source IO XML.Event | 251 | xmlStream :: ReadCommand -> WriteCommand -> ( Source IO XML.Event |
255 | , Sink (Flush XML.Event) IO () ) | 252 | , Sink (Flush XML.Event) IO () ) |
256 | xmlStream conread conwrite = (xsrc,xsnk) | 253 | xmlStream conread conwrite = (xsrc,xsnk) |
@@ -258,7 +255,7 @@ xmlStream conread conwrite = (xsrc,xsnk) | |||
258 | xsrc = src $= XML.parseBytes XML.def | 255 | xsrc = src $= XML.parseBytes XML.def |
259 | xsnk :: Sink (Flush Event) IO () | 256 | xsnk :: Sink (Flush Event) IO () |
260 | xsnk = -- XML.renderBytes XML.def =$ snk | 257 | xsnk = -- XML.renderBytes XML.def =$ snk |
261 | renderBuilderFlush XML.def | 258 | XML.renderBuilderFlush XML.def |
262 | =$= builderToByteStringFlush | 259 | =$= builderToByteStringFlush |
263 | =$= discardFlush | 260 | =$= discardFlush |
264 | =$ snk | 261 | =$ snk |