diff options
Diffstat (limited to 'node/config.go')
-rw-r--r-- | node/config.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/node/config.go b/node/config.go index 15884a12e..8af9215a0 100644 --- a/node/config.go +++ b/node/config.go @@ -95,12 +95,16 @@ type Config struct { // or not. Disabling is usually useful for protocol debugging (manual topology). NoDiscovery bool + DiscoveryV5 bool + // Bootstrap nodes used to establish connectivity with the rest of the network. BootstrapNodes []*discover.Node // Network interface address on which the node should listen for inbound peers. ListenAddr string + ListenAddrV5 string + // If set to a non-nil value, the given NAT port mapper is used to make the // listening port available to the Internet. NAT nat.Interface |