@ -58,11 +58,12 @@ func TestHarmonyFlags(t *testing.T) {
ServerPort : nodeconfig . DefaultDNSPort ,
} ,
P2P : harmonyconfig . P2pConfig {
Port : 9000 ,
IP : defaultConfig . P2P . IP ,
KeyFile : defaultConfig . P2P . KeyFile ,
DiscConcurrency : 5 ,
MaxConnsPerIP : 5 ,
Port : 9000 ,
IP : defaultConfig . P2P . IP ,
KeyFile : defaultConfig . P2P . KeyFile ,
DiscConcurrency : 5 ,
MaxConnsPerIP : 5 ,
DisablePrivateIPScan : false ,
} ,
HTTP : harmonyconfig . HttpConfig {
Enabled : true ,
@ -375,30 +376,44 @@ func TestP2PFlags(t *testing.T) {
args : [ ] string { "--p2p.port" , "9001" , "--p2p.keyfile" , "./key.file" , "--p2p.dht.datastore" ,
defDataStore } ,
expConfig : harmonyconfig . P2pConfig {
Port : 9001 ,
IP : nodeconfig . DefaultPublicListenIP ,
KeyFile : "./key.file" ,
DHTDataStore : & defDataStore ,
MaxConnsPerIP : 10 ,
Port : 9001 ,
IP : nodeconfig . DefaultPublicListenIP ,
KeyFile : "./key.file" ,
DHTDataStore : & defDataStore ,
MaxConnsPerIP : 10 ,
DisablePrivateIPScan : false ,
} ,
} ,
{
args : [ ] string { "--port" , "9001" , "--key" , "./key.file" } ,
expConfig : harmonyconfig . P2pConfig {
Port : 9001 ,
IP : nodeconfig . DefaultPublicListenIP ,
KeyFile : "./key.file" ,
MaxConnsPerIP : 10 ,
Port : 9001 ,
IP : nodeconfig . DefaultPublicListenIP ,
KeyFile : "./key.file" ,
MaxConnsPerIP : 10 ,
DisablePrivateIPScan : false ,
} ,
} ,
{
args : [ ] string { "--p2p.port" , "9001" , "--p2p.disc.concurrency" , "5" , "--p2p.security.max-conn-per-ip" , "5" } ,
expConfig : harmonyconfig . P2pConfig {
Port : 9001 ,
IP : nodeconfig . DefaultPublicListenIP ,
KeyFile : "./.hmykey" ,
DiscConcurrency : 5 ,
MaxConnsPerIP : 5 ,
Port : 9001 ,
IP : nodeconfig . DefaultPublicListenIP ,
KeyFile : "./.hmykey" ,
DiscConcurrency : 5 ,
MaxConnsPerIP : 5 ,
DisablePrivateIPScan : false ,
} ,
} ,
{
args : [ ] string { "--p2p.no-private-ip-scan" } ,
expConfig : harmonyconfig . P2pConfig {
Port : nodeconfig . DefaultP2PPort ,
IP : nodeconfig . DefaultPublicListenIP ,
KeyFile : "./.hmykey" ,
DiscConcurrency : nodeconfig . DefaultP2PConcurrency ,
MaxConnsPerIP : nodeconfig . DefaultMaxConnPerIP ,
DisablePrivateIPScan : true ,
} ,
} ,
}