Documentation ¶
Overview ¶
Package retrieval provides the retrieval protocol implementation. The protocol is used to retrieve chunks over the network using forwarding-kademlia routing.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Interface ¶
type Interface interface { // RetrieveChunk retrieves a chunk from the network using the retrieval protocol. // it takes as parameters a context, a chunk address to retrieve (content-addressed or single-owner) and // a source peer address, for the case that we are requesting the chunk for another peer. In case the request // originates at the current node (i.e. no forwarding involved), the caller should use swarm.ZeroAddress // as the value for sourcePeerAddress. RetrieveChunk(ctx context.Context, address, sourcePeerAddr swarm.Address) (chunk swarm.Chunk, err error) }
Click to show internal directories.
Click to hide internal directories.