control 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. Source: http-parser
  2. Maintainer: Christoph Biedl <debian.axhn@manchmal.in-ulm.de>
  3. Homepage: https://github.com/joyent/http-parser
  4. Standards-Version: 4.5.0
  5. Vcs-Browser: https://git.in-ulm.de/cbiedl/http-parser
  6. Vcs-Git: https://git.in-ulm.de/cbiedl/http-parser.git
  7. Build-Depends: debhelper-compat (= 12),
  8. Priority: optional
  9. Rules-Requires-Root: no
  10. Section: libs
  11. Package: libhttp-parser2.9
  12. Architecture: any
  13. Pre-Depends:
  14. ${misc:Pre-Depends},
  15. Depends: ${misc:Depends}, ${shlibs:Depends},
  16. Multi-Arch: same
  17. Description: parser for HTTP messages written in C
  18. It parses both requests and responses. The parser is designed to be used in
  19. performance HTTP applications. It does not make any syscalls nor allocations,
  20. it does not buffer data, it can be interrupted at anytime. Depending on your
  21. architecture, it only requires about 40 bytes of data per message stream (in
  22. a web server that is per connection).
  23. Package: libhttp-parser-dev
  24. Architecture: any
  25. Depends: ${misc:Depends},
  26. libhttp-parser2.9 (= ${binary:Version}),
  27. Section: libdevel
  28. Description: parser for HTTP messages: development libraries and header files
  29. It parses both requests and responses. The parser is designed to be used in
  30. performance HTTP applications. It does not make any syscalls nor allocations,
  31. it does not buffer data, it can be interrupted at anytime. Depending on your
  32. architecture, it only requires about 40 bytes of data per message stream (in
  33. a web server that is per connection).
  34. .
  35. This package contains development libraries and header files.