go-ipfs-config: Merge pull request #97 from ipfs/feat/sec-transport-experiments

feat: add an option for security transport experiments
This commit is contained in:
Steven Allen 2020-05-25 23:12:26 -07:00 committed by GitHub
commit 3d90053cdd

View File

@ -8,4 +8,11 @@ type Experiments struct {
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"`
}