如何设置Cap'n Proto RPC消息遍历限制?

How to set the Cap'n Proto RPC message traversal limit?

我需要发送一个带有超过默认消息遍历限制的 Rust Cap'n Proto API 的 RPC。当我尝试发送消息时,出现以下错误:

remote exception: <class \'capnp.lib.capnp.KjException
\'>:capnp/arena.c++:130: failed: Exceeded message traversal limit.
See capnp::ReaderOptions.

如果我正在使用指定新遍历限制的 capnp::serialize::read_message, I could provide a ReaderOptions 结构阅读消息。

但是,我正在像 calculator example 中那样发出和发送请求,而不是直接阅读消息。如何设置请求消息的遍历限制?

可以在构造VatNetwork时设置:

pub fn new<U>(
    input_stream: T,
    output_stream: U,
    side: Side,
    receive_options: ReaderOptions,
) -> VatNetwork<T>
where
    U: Write + 'static,

https://github.com/capnproto/capnproto-rust/issues/124#issuecomment-468877758