proxy-wasm-rust-sdk
proxy-wasm-rust-sdk copied to clipboard
`hostcalls::dispatch_http_call` doesn't allow to use a header value that is not a valid UTF-8 string
Summary
- HTTP spec allows arbitrary octets in header values
- However,
Rust SDK
is using&str
type that is limited to UTF-8 strings only - It is not possible to use
hostcalls::dispatch_http_call
to forward request headers, e.g. toext_authz
service