packages feed

quic 0.1.27 → 0.1.28

raw patch · 4 files changed

+8/−3 lines, 4 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

ChangeLog.md view
@@ -1,5 +1,9 @@ # ChangeLog +## 0.1.28++* Fixing a bug of quic bit.+ ## 0.1.27  * New API: `runWithSockets` for servers.
Network/QUIC/Client/Reader.hs view
@@ -47,7 +47,8 @@             Nothing -> close cs0             Just bs -> do                 now <- getTimeMicrosecond-                pkts <- decodePackets bs False+                let quicBit = greaseQuicBit $ getMyParameters conn+                pkts <- decodePackets bs (not quicBit)                 mapM_ (putQ now) pkts                 loop     logAction msg = connDebugLog conn ("debug: readerClient: " <> msg)
Network/QUIC/Server/Reader.hs view
@@ -370,7 +370,7 @@           Nothing -> UDP.close us           Just bs -> do               now <- getTimeMicrosecond-              quicBit <- greaseQuicBit <$> getPeerParameters conn+              let quicBit = greaseQuicBit $ getMyParameters conn               pkts <- decodeCryptPackets bs (not quicBit)               mapM_ (\(p,l,siz) -> writeRecvQ (connRecvQ conn) (mkReceivedPacket p now siz l)) pkts               loop
quic.cabal view
@@ -1,6 +1,6 @@ cabal-version:      >=1.10 name:               quic-version:            0.1.27+version:            0.1.28 license:            BSD3 license-file:       LICENSE maintainer:         kazu@iij.ad.jp