From 6369c264e2b54f7eb65a9f0f071ef7599ec7b20a Mon Sep 17 00:00:00 2001 From: Adam Ierymenko Date: Wed, 15 Apr 2015 15:12:09 -0700 Subject: Rename netconf to controller and NetworkConfigMaster to NetworkController for consistency. --- node/Node.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'node/Node.cpp') diff --git a/node/Node.cpp b/node/Node.cpp index c6ae54bd..801d4078 100644 --- a/node/Node.cpp +++ b/node/Node.cpp @@ -30,7 +30,7 @@ #include "Constants.hpp" #include "Node.hpp" #include "RuntimeEnvironment.hpp" -#include "NetworkConfigMaster.hpp" +#include "NetworkController.hpp" #include "CMWC4096.hpp" #include "Switch.hpp" #include "Multicaster.hpp" @@ -407,9 +407,9 @@ void Node::freeQueryResult(void *qr) ::free(qr); } -void Node::setNetconfMaster(void *networkConfigMasterInstance) +void Node::setNetconfMaster(void *networkControllerInstance) { - RR->netconfMaster = reinterpret_cast(networkConfigMasterInstance); + RR->localNetworkController = reinterpret_cast(networkControllerInstance); } /****************************************************************************/ @@ -654,10 +654,10 @@ void ZT1_Node_freeQueryResult(ZT1_Node *node,void *qr) } catch ( ... ) {} } -void ZT1_Node_setNetconfMaster(ZT1_Node *node,void *networkConfigMasterInstance) +void ZT1_Node_setNetconfMaster(ZT1_Node *node,void *networkControllerInstance) { try { - reinterpret_cast(node)->setNetconfMaster(networkConfigMasterInstance); + reinterpret_cast(node)->setNetconfMaster(networkControllerInstance); } catch ( ... ) {} } -- cgit v1.2.3