network: Low-level networking interface

[ bsd3, library, network ] [ Propose Tags ]

This package provides a low-level networking interface.

In network-2.6 the Network.URI module was split off into its own package, network-uri-2.6. If you're using the Network.URI module you can automatically get it from the right package by adding this to your .cabal file:

flag network-uri
  description: Get Network.URI from the network-uri package
  default: True

library
  -- ...
  if flag(network-uri)
    build-depends: network-uri >= 2.6, network >= 2.6
  else
    build-depends: network-uri < 2.6, network < 2.6

That is, get the module from either network < 2.6 or from network-uri >= 2.6.


[Skip to Readme]

Downloads

Note: This package has metadata revisions in the cabal description newer than included in the tarball. To unpack the package including the revisions, use 'cabal get'.

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 2.0, 2.1.0.0, 2.2.0.0, 2.2.0.1, 2.2.1, 2.2.1.1, 2.2.1.2, 2.2.1.3, 2.2.1.4, 2.2.1.5, 2.2.1.6, 2.2.1.7, 2.2.1.8, 2.2.1.9, 2.2.1.10, 2.2.3, 2.2.3.1, 2.3, 2.3.0.1, 2.3.0.2, 2.3.0.3, 2.3.0.4, 2.3.0.5, 2.3.0.6, 2.3.0.7, 2.3.0.8, 2.3.0.9, 2.3.0.10, 2.3.0.11, 2.3.0.12, 2.3.0.13, 2.3.0.14, 2.3.1.0, 2.3.1.1, 2.3.2.0, 2.3.2.1, 2.4.0.0, 2.4.0.1, 2.4.1.0, 2.4.1.1, 2.4.1.2, 2.4.2.0, 2.4.2.1, 2.4.2.2, 2.4.2.3, 2.5.0.0, 2.6.0.0, 2.6.0.1, 2.6.0.2, 2.6.1.0, 2.6.2.0, 2.6.2.1, 2.6.3.0, 2.6.3.1, 2.6.3.2, 2.6.3.3, 2.6.3.4, 2.6.3.5, 2.6.3.6, 2.7.0.0, 2.7.0.1, 2.7.0.2, 2.8.0.0, 2.8.0.1, 3.0.0.0, 3.0.0.1, 3.0.1.0, 3.0.1.1, 3.1.0.0, 3.1.0.1, 3.1.1.0, 3.1.1.1, 3.1.2.0, 3.1.2.1, 3.1.2.2, 3.1.2.3, 3.1.2.4, 3.1.2.5, 3.1.2.6, 3.1.2.7, 3.1.2.8, 3.1.2.9, 3.1.3.0, 3.1.4.0 (info)
Change log CHANGELOG.md
Dependencies base (>=3 && <4.17), bytestring (<0.11), unix (>=2) [details]
License BSD-3-Clause
Author
Maintainer Johan Tibell <johan.tibell@gmail.com>
Revised Revision 1 made by KazuYamamoto at 2023-05-12T00:56:49Z
Category Network
Home page https://github.com/haskell/network
Bug tracker https://github.com/haskell/network/issues
Source repo head: git clone git://github.com/haskell/network.git
Uploaded by JohanTibell at 2015-07-07T18:41:05Z
Distributions Arch:3.1.4.0, Debian:3.1.1.1, Fedora:3.1.4.0, FreeBSD:2.6.2.1, LTSHaskell:3.1.4.0, NixOS:3.1.4.0, Stackage:3.1.4.0, openSUSE:3.1.4.0
Reverse Dependencies 983 direct, 4549 indirect [details]
Downloads 491558 total (729 in the last 30 days)
Rating 2.5 (votes: 4) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs available [build log]
Last success reported on 2015-07-07 [all 1 reports]

Readme for network-2.6.2.1

[back to package description]

network Build Status

To build this package using Cabal directly from git, you must run autoreconf before the usual Cabal build steps (configure/build/install). autoreconf is included in the GNU Autoconf tools. There is no need to run the configure script: the setup configure step will do this for you.