summaryrefslogtreecommitdiffhomepage
path: root/src/c/include/unit
diff options
context:
space:
mode:
authorAndrew Clayton <a.clayton@nginx.com>2023-08-28 12:37:01 +0100
committerAndrew Clayton <a.clayton@nginx.com>2023-08-28 20:44:23 +0100
commit8dce3b870b923db810d232e408c530f938f75d80 (patch)
tree594605f58b9a6de532dc3a572fe8a31f8d8f216f /src/c/include/unit
parentda5d9dc03b14b4d0f1ce0ce3ff093f387e148706 (diff)
downloadunit-wasm-8dce3b870b923db810d232e408c530f938f75d80.tar.gz
unit-wasm-8dce3b870b923db810d232e408c530f938f75d80.tar.bz2
libunit-wasm: Pass ctx into luw_http_hdr_get_value() as const
Technically the context pointer can be passed in const even though we then un-const it passing it to the luw_foreach_http_hdr() macro. Signed-off-by: Andrew Clayton <a.clayton@nginx.com>
Diffstat (limited to 'src/c/include/unit')
-rw-r--r--src/c/include/unit/unit-wasm.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/c/include/unit/unit-wasm.h b/src/c/include/unit/unit-wasm.h
index cfff906..cc14b9d 100644
--- a/src/c/include/unit/unit-wasm.h
+++ b/src/c/include/unit/unit-wasm.h
@@ -183,7 +183,8 @@ extern void luw_http_hdr_iter(luw_ctx_t *ctx,
const char *value,
void *data),
void *user_data);
-extern const char *luw_http_hdr_get_value(luw_ctx_t *ctx, const char *hdr);
+extern const char *luw_http_hdr_get_value(const luw_ctx_t *ctx,
+ const char *hdr);
extern size_t luw_get_response_data_size(const luw_ctx_t *ctx);
extern int luw_mem_writep(luw_ctx_t *ctx, const char *fmt, ...);
extern size_t luw_mem_writep_data(luw_ctx_t *ctx, const u8 *src, size_t size);