proxy-wasm-rust-sdk icon indicating copy to clipboard operation
proxy-wasm-rust-sdk copied to clipboard

WebAssembly for Proxies (Rust SDK)

Results 80 proxy-wasm-rust-sdk issues
Sort by recently updated
recently updated
newest added

We use proxy-wasm-rust-sdk for our stats plugin. Recently we received a bug report from our customer. By looking into the backtrace, we found that the crash happened within the hostcalls.rs...

I think functions should be documented to make it easy to find (regardless of the ABI, which is now being written, cf. https://github.com/proxy-wasm/spec/issues/41)

``` impl HttpContext for HttpHeadersBody { fn on_http_request_body(&mut self, body_size: usize, end_of_stream: bool) -> Action { if !end_of_stream { return Action::Pause; } info!("on_http_request_body"); match self.get_shared_data("changed") { (change, _) => {...

This patch add a new struct PropertyPath and a macro used to create a PropertyPath with a slice of &str using const generics to prevent allocations in runtime. Before: ```rust...

Instead of sending unrelated -1 grps status code map the http code into a representative grpc code. Related issue @https://github.com/proxy-wasm/proxy-wasm-rust-sdk/issues/148

I have a wasm network plugin where I want to read a property that contains the value of an http header. I need this header so that I can know...

Hi. I'm trying to figure out how to create an envoy filter in Rust for non-HTTP TCP packets, specifically the client hello of the TLS handshake. I don't see any...

These are a pre-requisit for builds to complete.

We get a panic in our Rust Envoy filter when we try to open a new gRPC stream to any hostname that DNS can’t find any hosts for. Reproduced with...

hello, I am using rust proxy wasm with apisix wasm plugin, below is the sample code to get, modify and set http request body ```rust use std::string; use json; use...