network-anonymous-i2p 0.9.0 → 0.9.1
raw patch · 3 files changed
+7/−5 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- network-anonymous-i2p.cabal +2/−1
- src/Network/Anonymous/I2P.hs +4/−3
- src/Network/Anonymous/I2P/Error.hs +1/−1
network-anonymous-i2p.cabal view
@@ -1,6 +1,6 @@ name: network-anonymous-i2p category: Network -version: 0.9.0 +version: 0.9.1 description: Haskell API for I2P anonymous networking license: MIT @@ -10,6 +10,7 @@ maintainer: leon@solatis.com stability: experimental synopsis: Haskell API for I2P anonymous networking +homepage: http://github.com/solatis/haskell-network-anonymous-i2p build-type: Simple data-files: LICENSE, README.md cabal-version: >= 1.10
src/Network/Anonymous/I2P.hs view
@@ -56,9 +56,10 @@ -- -- I2P provides three different ways of communicating with other hosts: -- --- * __Virtual Streams__: the closest thing to reliable TCP sockets that I2P --- brings, and allows you to start a server, accept connections and establish --- connections with remote servers. +-- * __Virtual Streams__: similar to reliable TCP sockets, data is guaranteed to +-- be delivered, and in order. You can accept virtual streams and connect to +-- remote virtual streams, and use regular sockets to transmit the actual +-- messages. -- -- * __Repliable Datagrams__: unreliable delivery of messages to a remote host, -- but adds a reply-to address to the message so the remote host can send a
src/Network/Anonymous/I2P/Error.hs view
@@ -67,7 +67,7 @@ unreachableErrorType :: I2PErrorType unreachableErrorType = Unreachable --- | I2P error when communication with the SAM bridge fails +-- | I2P error when a datagram message would be too long to transmit messageTooLongErrorType :: I2PErrorType messageTooLongErrorType = MessageTooLong