Config.in 1.2 KB

12345678910111213141516171819202122232425262728293031
  1. config ADK_PACKAGE_NEON
  2. prompt "neon.............................. an HTTP and WebDAV client library"
  3. tristate
  4. default n
  5. select ADK_PACKAGE_LIBPTHREAD
  6. select ADK_PACKAGE_LIBOPENSSL
  7. select ADK_PACKAGE_LIBXML2
  8. select ADK_PACKAGE_ZLIB
  9. help
  10. neon is an HTTP and WebDAV client library, with a C interface.
  11. Featuring:
  12. * High-level interface to HTTP and WebDAV methods (PUT, GET,
  13. HEAD etc)
  14. * Low-level interface to HTTP request handling, to allow
  15. implementing new methods easily.
  16. * persistent connections
  17. * RFC2617 basic and digest authentication (including auth-int,
  18. md5-sess)
  19. * Proxy support (including basic/digest authentication)
  20. * SSL/TLS support using OpenSSL (including client certificate
  21. support)
  22. * Generic WebDAV 207 XML response handling mechanism
  23. * XML parsing using the expat or libxml parsers
  24. * Easy generation of error messages from 207 error responses
  25. * WebDAV resource manipulation: MOVE, COPY, DELETE, MKCOL.
  26. * WebDAV metadata support: set and remove properties, query any
  27. set of properties (PROPPATCH/PROPFIND).
  28. * autoconf macros supplied for easily embedding neon directly
  29. inside an application source tree.