proxy-wasm-cpp-sdk
proxy-wasm-cpp-sdk copied to clipboard
WebAssembly for Proxies (C++ SDK)
Any example for how to use gRPC bidi streams from a wasm filter ? As I understand we can make gRPC calls from either Context or RootContext.
[source/extensions/common/wasm/wasm_vm.cc:39] Failed to load Wasm module due to a missing import: env.pthread_rwlock_init
Is there detailed API documentation? Such as "proxy_wasm_externs.h" and these functions "virtual FilterStatus onNewConnection() { return FilterStatus::Continue; } virtual FilterStatus onDownstreamData(size_t, bool) { return FilterStatus::Continue; } virtual FilterStatus onUpstreamData(size_t, bool)...
When I run the docker build command, I get the following error: ...... Cloning into 'protobuf'... fatal: unable to access 'https://github.com/protocolbuffers/protobuf/': gnutls_handshake() failed: Error in the push function. The command...
What I suspect is happening is that the output of pairs() stops being safe after the WasmData goes out of scope and its destructor calls `::free()`. To reproduce, add to...
I would like to make calls to an external http server via the proxy. The method 'httpcall' allows one to do it right? could someone give an example how to...
The file README, [line 47](https://github.com/proxy-wasm/proxy-wasm-cpp-sdk/blame/master/README.md#L47) registers the example with no root_id parameter. I assume this picks up the default argument, `""`, but I couldn't get the example working without a...
When the code inside a wasm module throws an exception, and catches it within the same execution so that it does not cross the boundary between wasm and Envoy it...
Currently the document about available callbacks is out of dated. We need to have auto doc gen in this repo to covert comments for callbacks to document for references.