summaryrefslogtreecommitdiff
path: root/controller/EmbeddedNetworkController.cpp
diff options
context:
space:
mode:
authorGrant Limberg <[email protected]>2023-05-25 11:09:08 -0700
committerGitHub <[email protected]>2023-05-25 11:09:08 -0700
commitf42841a6ab332a4078d01e81d5726f442b81fd00 (patch)
tree8267cedb230f4113b5bb021608c71bd74cdc3ad3 /controller/EmbeddedNetworkController.cpp
parent524363dcf74f7b919d01fa404f7bd5592f2d645c (diff)
fix init order for EmbeddedNetworkController (#2014)
Diffstat (limited to 'controller/EmbeddedNetworkController.cpp')
-rw-r--r--controller/EmbeddedNetworkController.cpp12
1 files changed, 11 insertions, 1 deletions
diff --git a/controller/EmbeddedNetworkController.cpp b/controller/EmbeddedNetworkController.cpp
index 3f831693..b60c375c 100644
--- a/controller/EmbeddedNetworkController.cpp
+++ b/controller/EmbeddedNetworkController.cpp
@@ -466,11 +466,21 @@ EmbeddedNetworkController::EmbeddedNetworkController(Node *node,const char *ztPa
, _node(node)
, _ztPath(ztPath)
, _path(dbPath)
+ , _signingId()
+ , _signingIdAddressString()
, _sender((NetworkController::Sender *)0)
, _db(this)
+ , _queue()
+ , _threads()
+ , _threads_l()
+ , _memberStatus()
+ , _memberStatus_l()
+ , _expiringSoon()
+ , _expiringSoon_l()
+ , _rc(rc)
, _ssoExpiryRunning(true)
, _ssoExpiry(std::thread(&EmbeddedNetworkController::_ssoExpiryThread, this))
- , _rc(rc)
+
#ifdef CENTRAL_CONTROLLER_REQUEST_BENCHMARK
, _member_status_lookup{"nc_member_status_lookup",""}
, _member_status_lookup_count{"nc_member_status_lookup_count",""}