diff options
Diffstat (limited to 'node')
-rw-r--r-- | node/Node.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/node/Node.cpp b/node/Node.cpp index 593e63bc..815451fd 100644 --- a/node/Node.cpp +++ b/node/Node.cpp @@ -444,6 +444,10 @@ Node::ReasonForTermination Node::run() if (Utils::fileExists(netconfServicePath.c_str())) { LOG("netconf.d/netconfi.service appears to exist, starting..."); _r->netconfService = new Service(_r,"netconf",netconfServicePath.c_str(),&_netconfServiceMessageHandler,_r); + Dictionary initMessage; + initMessage["type"] = "netconf-init"; + initMessage["netconfId"] = _r->identity.toString(true); + _r->netconfService->send(initMessage); } } catch ( ... ) { LOG("unexpected exception attempting to start services"); |