https://github.com/ipfs/go-ipfs
Raw File
Tip revision: 9d9aca1b099dd259556ce7fc3c99484e694d8d48 authored by Gus Eggert on 01 May 2023, 19:29:34 UTC
fix: use default HTTP routers when FullRT DHT client is used (#9841)
Tip revision: 9d9aca1
discovery.go
package config

type Discovery struct {
	MDNS MDNS
}

type MDNS struct {
	Enabled bool

	// DEPRECATED: the time between discovery rounds is no longer configurable
	// See: https://github.com/ipfs/go-ipfs/pull/9048#discussion_r906814717
	Interval *OptionalInteger `json:",omitempty"`
}
back to top