aboutsummaryrefslogtreecommitdiff
path: root/doc
Commit message (Collapse)AuthorAgeFilesLines
* Bump version to 0.4.0v0.4.0Xavier Del Campo Romero2024-08-2223-23/+23
|
* Move signal handling to processesXavier Del Campo Romero2024-08-221-0/+51
| | | | | | | | | | | | | | So far, libweb installed a signal handler so as to handle SIGTERM, SIGPIPE and SIGINT signals so that processes would not have to care about such details. However, it is not advisable for libraries to install signal handlers, as signals are handled on a per-process basis. The previous approach would be incompatible if several instances of the library were allocated by the same process. Unfortunately, this has the undesired side effect of adding the boilerplate code into the process.
* Bump version to 0.3.0v0.3.0Xavier Del Campo Romero2024-02-1923-23/+23
|
* Limit maximum multipart/form-data pairs and filesXavier Del Campo Romero2024-02-192-2/+34
| | | | | | A malicious user could inject an infinite number of empty files or key/value pairs into a request in order to exhaust the device's resources.
* Bump version to 0.2.0v0.2.0Xavier Del Campo Romero2024-02-1223-23/+23
|
* libweb_http.7: Update according to status quoXavier Del Campo Romero2024-02-121-60/+137
|
* libweb_html.7: Fix typoXavier Del Campo Romero2024-02-121-1/+1
|
* Update copyright notices to 2024Xavier Del Campo Romero2024-02-1223-23/+23
|
* doc: Update handler_{loop,listen}Xavier Del Campo2023-11-206-40/+114
|
* Send HTTP headers to payload callbackXavier Del Campo Romero2023-11-182-4/+23
| | | | | | | | | | | | Even if libweb already parses some common headers, such as Content-Length, some users might find it interesting to inspect which headers were received from a request. Since HTTP/1.1 does not define a limit on the number of maximum headers a client can send, for security reasons a maximum value must be provided by the user. Any extra headers shall be then discarded by libweb. An example application showing this new feature is also provided.
* doc: Add man3 page for http_decode_urldecode-urlXavier Del Campo Romero2023-11-122-0/+42
| | | | | | | Suprisingly, this man page was missing on the 0.1.0 release. The recent signature changes on http_decode_url have already been reflected.
* Adhere to GNU Make directory variablesXavier Del Campo Romero2023-10-253-32/+46
|
* Rename project from slweb to libwebv0.1.0-rc3Xavier Del Campo Romero2023-10-1122-127/+127
| | | | | | | | | | | | It was found out there was another project of the same name around (https://git.sr.ht/~strahinja/slweb/), also related to website generation. In order to avoid confusion, a new name has been chosen for this project. Surprisingly, libweb was not in use by any distributions (according to https://repology.org and AUR index), and it should reflect well the intention behind this project i.e., being a library to build web-related stuff.
* Install man pagesv0.1.0-rc1Xavier Del Campo Romero2023-09-274-0/+66
|
* Add man pagesXavier Del Campo Romero2023-09-2721-0/+2246