mirror of
https://github.com/ipfs/kubo.git
synced 2026-03-13 04:08:08 +08:00
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.
19 lines
503 B
Go
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"`
|
|
}
|