diff options
author | Andrew Clayton <a.clayton@nginx.com> | 2023-08-28 12:41:26 +0100 |
---|---|---|
committer | Andrew Clayton <a.clayton@nginx.com> | 2023-08-28 20:44:23 +0100 |
commit | 0b1ff5207609bb2939fe70e996aa7651eac86c46 (patch) | |
tree | 44b947f6bae653c2afdda6ad5f6aaa23a0993ab9 | |
parent | 8dce3b870b923db810d232e408c530f938f75d80 (diff) | |
download | unit-wasm-0b1ff5207609bb2939fe70e996aa7651eac86c46.tar.gz unit-wasm-0b1ff5207609bb2939fe70e996aa7651eac86c46.tar.bz2 |
Rust/rusty: Make a bunch of functions take ctx as const
The various uwr_get_ functions should take the context pointer as a
const.
Signed-off-by: Andrew Clayton <a.clayton@nginx.com>
-rw-r--r-- | src/rust/unit-wasm-sys/rusty.rs | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/rust/unit-wasm-sys/rusty.rs b/src/rust/unit-wasm-sys/rusty.rs index 981e24a..3f07a56 100644 --- a/src/rust/unit-wasm-sys/rusty.rs +++ b/src/rust/unit-wasm-sys/rusty.rs @@ -61,35 +61,35 @@ pub fn uwr_set_req_buf( unsafe { luw_set_req_buf(ctx, buf, flags) } } -pub fn uwr_get_http_path(ctx: *mut luw_ctx_t) -> &'static str { +pub fn uwr_get_http_path(ctx: *const luw_ctx_t) -> &'static str { C2S!(luw_get_http_path(ctx)) } -pub fn uwr_get_http_method(ctx: *mut luw_ctx_t) -> &'static str { +pub fn uwr_get_http_method(ctx: *const luw_ctx_t) -> &'static str { C2S!(luw_get_http_method(ctx)) } -pub fn uwr_get_http_version(ctx: *mut luw_ctx_t) -> &'static str { +pub fn uwr_get_http_version(ctx: *const luw_ctx_t) -> &'static str { C2S!(luw_get_http_version(ctx)) } -pub fn uwr_get_http_query(ctx: *mut luw_ctx_t) -> &'static str { +pub fn uwr_get_http_query(ctx: *const luw_ctx_t) -> &'static str { C2S!(luw_get_http_query(ctx)) } -pub fn uwr_get_http_remote(ctx: *mut luw_ctx_t) -> &'static str { +pub fn uwr_get_http_remote(ctx: *const luw_ctx_t) -> &'static str { C2S!(luw_get_http_remote(ctx)) } -pub fn uwr_get_http_local_addr(ctx: *mut luw_ctx_t) -> &'static str { +pub fn uwr_get_http_local_addr(ctx: *const luw_ctx_t) -> &'static str { C2S!(luw_get_http_local_addr(ctx)) } -pub fn uwr_get_http_local_port(ctx: *mut luw_ctx_t) -> &'static str { +pub fn uwr_get_http_local_port(ctx: *const luw_ctx_t) -> &'static str { C2S!(luw_get_http_local_port(ctx)) } -pub fn uwr_get_http_server_name(ctx: *mut luw_ctx_t) -> &'static str { +pub fn uwr_get_http_server_name(ctx: *const luw_ctx_t) -> &'static str { C2S!(luw_get_http_server_name(ctx)) } |