-- Initial secureUDP.cabal generated by cabal init. For further -- documentation, see http://haskell.org/cabal/users-guide/ name: secureUDP version: 0.1.1.3 synopsis: Setups secure (unsorted) UDP packet transfer. description: This simple module allows to send packages ensuring delivering over an UDP connection using ACKs and timeouts under the hood, also setups the threads needed for listening and sending, making them transparent to the user. . As the packages can be delivered just when they arrive, is not guarenteed that they arrive in order. . Once a sent package has passed many timeouts without been ACKed from the recipient it can be recognized as a lost package, meaning that the recipient cannot longer be reached. license: MIT license-file: LICENSE author: Francisco Javier Andrés Casas Barrientos maintainer: franciscojacb@gmail.com -- copyright: category: Network build-type: Simple extra-source-files: README.md cabal-version: >=1.10 library exposed-modules: SecureUDP other-modules: Channel, Auxiliars -- other-extensions: build-depends: base >=4.0 && <5.0, bytestring >=0.10, containers >=0.5, network >=2.6 && <3.0 -- hs-source-dirs: default-language: Haskell2010 source-repository head type: git location: git://github.com/Autopawn/haskell-secureUDP.git