ceremonyclient/go-libp2p/p2p/http/options.go

25 lines
915 B
Go
Raw Normal View History

2024-06-08 11:32:45 +00:00
package libp2phttp
type RoundTripperOption func(o roundTripperOpts) roundTripperOpts
type roundTripperOpts struct {
preferHTTPTransport bool
serverMustAuthenticatePeerID bool
}
// PreferHTTPTransport tells the roundtripper constructor to prefer using an
// HTTP transport (as opposed to a libp2p stream transport). Useful, for
// example, if you want to attempt to leverage HTTP caching.
func PreferHTTPTransport(o roundTripperOpts) roundTripperOpts {
o.preferHTTPTransport = true
return o
}
// ServerMustAuthenticatePeerID tells the roundtripper constructor that we MUST
// authenticate the Server's PeerID. Note: this currently means we can not use a
// native HTTP transport (HTTP peer id authentication is not yet implemented: https://github.com/libp2p/specs/pull/564).
func ServerMustAuthenticatePeerID(o roundTripperOpts) roundTripperOpts {
o.serverMustAuthenticatePeerID = true
return o
}