This commit is contained in:
John Smith
2022-11-26 21:37:23 -05:00
parent 5df46aecae
commit b1bdf76ae8
80 changed files with 865 additions and 700 deletions

View File

@@ -745,7 +745,6 @@ class VeilidConfigNetwork {
VeilidConfigRPC rpc;
VeilidConfigDHT dht;
bool upnp;
bool natpmp;
bool detectAddressChanges;
int restrictedNatRetries;
VeilidConfigTLS tls;
@@ -770,7 +769,6 @@ class VeilidConfigNetwork {
required this.rpc,
required this.dht,
required this.upnp,
required this.natpmp,
required this.detectAddressChanges,
required this.restrictedNatRetries,
required this.tls,
@@ -797,7 +795,6 @@ class VeilidConfigNetwork {
'rpc': rpc.json,
'dht': dht.json,
'upnp': upnp,
'natpmp': natpmp,
'detect_address_changes': detectAddressChanges,
'restricted_nat_retries': restrictedNatRetries,
'tls': tls.json,
@@ -827,7 +824,6 @@ class VeilidConfigNetwork {
rpc = VeilidConfigRPC.fromJson(json['rpc']),
dht = VeilidConfigDHT.fromJson(json['dht']),
upnp = json['upnp'],
natpmp = json['natpmp'],
detectAddressChanges = json['detect_address_changes'],
restrictedNatRetries = json['restricted_nat_retries'],
tls = VeilidConfigTLS.fromJson(json['tls']),