Files
go-i2p/lib/config/router.go

16 lines
332 B
Go
Raw Normal View History

2016-01-28 10:16:26 -05:00
package config
// router.config options
type RouterConfig struct {
2016-08-17 09:19:56 -04:00
// netdb configuration
NetDb *NetDbConfig
// configuration for bootstrapping into the network
Bootstrap *BootstrapConfig
2016-01-28 10:16:26 -05:00
}
// defaults for router
2016-08-17 09:19:56 -04:00
var DefaultRouterConfig = &RouterConfig{
NetDb: &DefaultNetDbConfig,
Bootstrap: &DefaultBootstrapConfig,
2016-01-28 10:16:26 -05:00
}