X-Git-Url: https://git.rkrishnan.org/?a=blobdiff_plain;ds=sidebyside;f=src%2FFuncTorrent%2FPeer.hs;h=c833c061bd4285be88f3754e62e5b83774c1d806;hb=08f3238a8162039a1b77f4fb8825a56a34203c02;hp=63aaa5afe9ede340862383318370616a8c9813e8;hpb=aa5477676dd98fb07a2afa118c29f98a4885fdc9;p=functorrent.git diff --git a/src/FuncTorrent/Peer.hs b/src/FuncTorrent/Peer.hs index 63aaa5a..c833c06 100644 --- a/src/FuncTorrent/Peer.hs +++ b/src/FuncTorrent/Peer.hs @@ -166,7 +166,7 @@ msgLoop pieceStatus msgchannel = do NotInterestedMsg -> do modify (\st' -> st' {heInterested = False}) msgLoop pieceStatus msgchannel - CancelMsg _ _ _ -> -- check if valid index, begin, length + CancelMsg {} -> -- check if valid index, begin, length msgLoop pieceStatus msgchannel PortMsg _ -> msgLoop pieceStatus msgchannel @@ -175,7 +175,7 @@ msgLoop pieceStatus msgchannel = do let pieceStatus' = updatePieceAvailability pieceStatus p [idx] msgLoop pieceStatus' msgchannel _ -> do - liftIO $ putStrLn $ ".. not doing anything with the msg" + liftIO $ putStrLn ".. not doing anything with the msg" msgLoop pieceStatus msgchannel -- No need to handle PieceMsg and RequestMsg here.