Commit 009928df7be267fd5282e2e675f1fa268cae4dd3
- Diff rendering mode:
- inline
- side by side
README
(2 / 2)
|   | |||
| 1 | 1 | An asynchronous DNS resolver for Haskell_ | |
| 2 | 2 | ========================================= | |
| 3 | 3 | ||
| 4 | :Latest Release: hsdns-1.1.tar.gz_ | ||
| 4 | :Latest Release: hsdns-1.2.tar.gz_ | ||
| 5 | 5 | :Darcs: darcs_ get http://cryp.to/hsdns/ | |
| 6 | 6 | ||
| 7 | 7 | Synopsis | |
| … | … | ||
| 56 | 56 | ||
| 57 | 57 | .. _Reference Documentation: docs/index.html | |
| 58 | 58 | ||
| 59 | .. _hsdns-1.1.tar.gz: http://cryp.to/hsdns/hsdns-1.1.tar.gz | ||
| 59 | .. _hsdns-1.2.tar.gz: http://cryp.to/hsdns/hsdns-1.2.tar.gz | ||
| 60 | 60 | ||
| 61 | 61 | .. _adns-reverse-lookup.hs: example/adns-reverse-lookup.hs |
hsdns.cabal
(30 / 30)
|   | |||
| 1 | Name: hsdns | ||
| 2 | Version: 1.1 | ||
| 3 | Author: Peter Simons <simons@cryp.to>, | ||
| 4 | Lutz Donnerhacke <lutz@iks-jena.de> | ||
| 5 | Maintainer: simons@cryp.to | ||
| 6 | License: LGPL | ||
| 7 | Homepage: http://cryp.to/hsdns/ | ||
| 8 | Synopsis: Asynchronous DNS Resolver | ||
| 9 | Description: Asynchronous DNS Resolver; requires GNU ADNS to be installed. | ||
| 10 | Category: Foreign, Network | ||
| 11 | Build-Depends: base, network | ||
| 12 | Extensions: ForeignFunctionInterface, EmptyDataDecls | ||
| 13 | Extra-Libraries: adns | ||
| 14 | Includes: "adns.h", "errno.h" | ||
| 15 | Exposed-Modules: ADNS, | ||
| 16 | ADNS.Base, | ||
| 17 | ADNS.Endian, | ||
| 18 | ADNS.Resolver | ||
| 19 | GHC-Options: -O -Wall | ||
| 20 | Data-Files: README, prologue.txt | ||
| 1 | Name: hsdns | ||
| 2 | Version: 1.2 | ||
| 3 | Author: Peter Simons <simons@cryp.to>, | ||
| 4 | Lutz Donnerhacke <lutz@iks-jena.de> | ||
| 5 | Maintainer: simons@cryp.to | ||
| 6 | License: LGPL | ||
| 7 | Homepage: http://cryp.to/hsdns/ | ||
| 8 | Synopsis: Asynchronous DNS Resolver | ||
| 9 | Description: Asynchronous DNS Resolver; requires GNU ADNS to be installed. | ||
| 10 | Category: Foreign, Network | ||
| 11 | Build-Depends: base, network | ||
| 12 | Extensions: ForeignFunctionInterface, EmptyDataDecls | ||
| 13 | Extra-Libraries: adns | ||
| 14 | Includes: "adns.h", "errno.h" | ||
| 15 | Exposed-Modules: ADNS, | ||
| 16 | ADNS.Base, | ||
| 17 | ADNS.Endian, | ||
| 18 | ADNS.Resolver | ||
| 19 | GHC-Options: -O -Wall | ||
| 20 | Data-Files: README, prologue.txt | ||
| 21 | 21 | ||
| 22 | Executable: adns-reverse-lookup | ||
| 23 | Hs-Source-Dirs: example, . | ||
| 24 | Main-Is: adns-reverse-lookup.hs | ||
| 25 | Extra-Libraries: adns | ||
| 26 | GHC-Options: -O -Wall -threaded | ||
| 22 | Executable: adns-reverse-lookup | ||
| 23 | Hs-Source-Dirs: example, . | ||
| 24 | Main-Is: adns-reverse-lookup.hs | ||
| 25 | Extra-Libraries: adns | ||
| 26 | GHC-Options: -O -Wall -threaded | ||
| 27 | 27 | ||
| 28 | Executable: adns-test-and-traverse | ||
| 29 | Hs-Source-Dirs: example, . | ||
| 30 | Main-Is: adns-test-and-traverse.hs | ||
| 31 | Extra-Libraries: adns | ||
| 32 | GHC-Options: -O -Wall -threaded | ||
| 28 | Executable: adns-test-and-traverse | ||
| 29 | Hs-Source-Dirs: example, . | ||
| 30 | Main-Is: adns-test-and-traverse.hs | ||
| 31 | Extra-Libraries: adns | ||
| 32 | GHC-Options: -O -Wall -threaded |

