diff options
| author | Xavier Del Campo Romero <xavi.dcr@tutanota.com> | 2023-03-20 03:32:00 +0100 |
|---|---|---|
| committer | Xavier Del Campo Romero <xavi.dcr@tutanota.com> | 2023-07-20 23:52:53 +0200 |
| commit | 483169d192c1efd35c4428eec4dddefb5b5aa59f (patch) | |
| tree | c0a74c80698b425587f72d28e9552188f8de1040 /http.h | |
| parent | fdf6dc246460504ce3ead44f79f4df0ab5edd918 (diff) | |
Send response on quota exceeded
So far, slcl would just close the connection with a client when the
Content-Length of an incoming request exceeded the user quota, without
any meaningful information given back to the user.
Now, slcl responds with a HTML file with meaningful information about
the error.
Limitations:
- While this commits has been successfully tested on ungoogled-chromium,
LibreWolf (and I assume Firefox and any other derivates too) does not
seem to receive the response from the server.
- However, this issue only occurred during local testing, but not
on remote instances.
Diffstat (limited to 'http.h')
| -rw-r--r-- | http.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -45,6 +45,7 @@ struct http_payload X(UNAUTHORIZED, "Unauthorized", 401) \ X(FORBIDDEN, "Forbidden", 403) \ X(NOT_FOUND, "Not found", 404) \ + X(PAYLOAD_TOO_LARGE, "Payload too large", 413) \ X(INTERNAL_ERROR, "Internal Server Error", 500) struct http_response @@ -80,7 +81,7 @@ struct http_cfg int (*payload)(const struct http_payload *p, struct http_response *r, void *user); int (*length)(unsigned long long len, const struct http_cookie *c, - void *user); + struct http_response *r, void *user); const char *tmpdir; void *user; }; |
