github.com/keltia/go-ipfs@v0.3.8-0.20150909044612-210793031c63/repo/config/discovery.go (about)

     1  package config
     2  
     3  type Discovery struct {
     4  	MDNS MDNS
     5  }
     6  
     7  type MDNS struct {
     8  	Enabled bool
     9  
    10  	// Time in seconds between discovery rounds
    11  	Interval int
    12  }