cowlib_app.asciidoc 808 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. = cowlib(7)
  2. == Name
  3. cowlib - Support library for manipulating Web protocols
  4. == Description
  5. Cowlib provides libraries for parsing and building messages
  6. for various Web protocols, including HTTP/1.1, HTTP/2 and
  7. Websocket.
  8. It is optimized for completeness rather than speed. No value
  9. is ignored, they are all returned.
  10. == Modules
  11. * link:man:cow_cookie(3)[cow_cookie(3)] - Cookies
  12. == Dependencies
  13. * crypto - Crypto functions
  14. All these applications must be started before the `cowlib`
  15. application. To start Cowlib and all dependencies at once:
  16. [source,erlang]
  17. ----
  18. {ok, _} = application:ensure_all_started(cowlib).
  19. ----
  20. == Environment
  21. The `cowlib` application does not define any application
  22. environment configuration parameters.
  23. == See also
  24. link:man:cowboy(7)[cowboy(7)],
  25. link:man:gun(7)[gun(7)]