diff options
| author | Xavier Del Campo Romero <xavi92@disroot.org> | 2026-02-12 16:59:55 +0100 |
|---|---|---|
| committer | Xavier Del Campo Romero <xavi92@disroot.org> | 2026-02-12 16:59:55 +0100 |
| commit | 87807c690947f4636dc4dd7fddca15f944719f0c (patch) | |
| tree | 0696d61b91a3e5f40a34cf09ac6c715584af5744 /examples/headers | |
| parent | 16f07314e675dd7d9d9cfb44dfb33cd81b13590d (diff) | |
Add HTTP op and resource to length callback
Users might want to know which HTTP operation (i.e., POST or PUT) and/or
resource is being requested before determining whether the request
should be accepted or not.
Diffstat (limited to 'examples/headers')
| -rw-r--r-- | examples/headers/main.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/headers/main.c b/examples/headers/main.c index a4eb5e6..b9ed388 100644 --- a/examples/headers/main.c +++ b/examples/headers/main.c @@ -40,9 +40,9 @@ static int hello(const struct http_payload *const pl, return 0; } -static int on_length(const unsigned long long len, - const struct http_cookie *const c, struct http_response *const r, - void *const user) +static int on_length(const enum http_op op, const char *const res, + const unsigned long long len, const struct http_cookie *const c, + struct http_response *const r, void *const user) { *r = (const struct http_response) { |
