kubo/config/experiments.go
Steven Allen e69fcd9d01 go-ipfs-config: feat: add an option for security transport experiments
We should have a more permanent way to configure security transports, but
experimental flags are a quick and unstable way to do this without making any
promises.
2020-05-25 23:11:18 -07:00

19 lines
503 B
Go

package config
type Experiments struct {
FilestoreEnabled bool
UrlstoreEnabled bool
ShardingEnabled bool
GraphsyncEnabled bool
Libp2pStreamMounting bool
P2pHttpProxy bool
StrategicProviding bool
// OverrideSecurityTransports overrides the set of available security
// transports when non-empty. This option should eventually migrate some
// place more stable.
//
// Default: ["tls", "secio", "noise"].
OverrideSecurityTransports []string `json:",omitempty"`
}