subspace_networking::protocols::request_response

Module request_response_factory

source
Expand description

Collection of request-response protocols.

The [RequestResponse] struct defined in this module provides support for zero or more so-called “request-response” protocols.

A request-response protocol works in the following way:

  • For every emitted request, a new substream is open and the protocol is negotiated. If the remote supports the protocol, the size of the request is sent as a LEB128 number, followed with the request itself. The remote then sends the size of the response as a LEB128 number, followed with the response.

  • Requests have a certain time limit before they time out. This time includes the time it takes to send/receive the request and response.

  • If provided, a “requests processing” channel is used to handle incoming requests.

Original file commit: https://github.com/paritytech/substrate/commit/c2fc4b3ca0d7a15cc3f9cb1e5f441d99ec8d6e0b

Structs§

Enums§

Traits§

  • Defines a handler for the request-response protocol factory.