Documentation
¶
Index ¶
Constants ¶
View Source
const ( DefaultRecordsLimit = 20 DefaultStreamingRecordsLimit = 0 )
View Source
const ( ProvidePath = "/routing/v1/providers/" FindProvidersPath = "/routing/v1/providers/{cid}" IPNSPath = "/routing/v1/ipns/{cid}" )
Variables ¶
This section is empty.
Functions ¶
Types ¶
type ContentRouter ¶
type ContentRouter interface { // FindProviders searches for peers who are able to provide a given key. Limit // indicates the maximum amount of results to return. 0 means unbounded. FindProviders(ctx context.Context, key cid.Cid, limit int) (iter.ResultIter[types.ProviderResponse], error) ProvideBitswap(ctx context.Context, req *BitswapWriteProvideRequest) (time.Duration, error) Provide(ctx context.Context, req *WriteProvideRequest) (types.ProviderResponse, error) // FindIPNSRecord searches for an [ipns.Record] for the given [ipns.Name]. FindIPNSRecord(ctx context.Context, name ipns.Name) (*ipns.Record, error) // ProvideIPNSRecord stores the provided [ipns.Record] for the given [ipns.Name]. It is // guaranteed that the record matches the provided name. ProvideIPNSRecord(ctx context.Context, name ipns.Name, record *ipns.Record) error }
type FindProvidersAsyncResponse ¶ added in v0.9.0
type FindProvidersAsyncResponse struct { ProviderResponse types.ProviderResponse Error error }
type Option ¶ added in v0.9.0
type Option func(s *server)
func WithRecordsLimit ¶ added in v0.9.0
WithRecordsLimit sets a limit that will be passed to ContentRouter.FindProviders for non-streaming requests (application/json). Default is DefaultRecordsLimit.
func WithStreamingRecordsLimit ¶ added in v0.9.0
WithStreamingRecordsLimit sets a limit that will be passed to ContentRouter.FindProviders for streaming requests (application/x-ndjson). Default is DefaultStreamingRecordsLimit.
func WithStreamingResultsDisabled ¶ added in v0.9.0
func WithStreamingResultsDisabled() Option
WithStreamingResultsDisabled disables ndjson responses, so that the server only supports JSON responses.
type WriteProvideRequest ¶
Click to show internal directories.
Click to hide internal directories.