diff options
| author | Adam Ierymenko <adam.ierymenko@gmail.com> | 2013-09-19 16:16:48 -0400 |
|---|---|---|
| committer | Adam Ierymenko <adam.ierymenko@gmail.com> | 2013-09-19 16:16:48 -0400 |
| commit | c26b64f24ba32db90fa66dfb7f3801183ef4b770 (patch) | |
| tree | 594ed321146508afede307da6466e64ac0ac4cd8 /netconf-service | |
| parent | 795f41c331a8ba15fbeb6f89d2c3349ceeda8b58 (diff) | |
| download | infinitytier-c26b64f24ba32db90fa66dfb7f3801183ef4b770.tar.gz infinitytier-c26b64f24ba32db90fa66dfb7f3801183ef4b770.zip | |
Fix for netconf advertising of multicast propagation parameters, and defaults in Network.hpp.
Diffstat (limited to 'netconf-service')
| -rw-r--r-- | netconf-service/netconf.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/netconf-service/netconf.cpp b/netconf-service/netconf.cpp index a4f22527..a7e1f257 100644 --- a/netconf-service/netconf.cpp +++ b/netconf-service/netconf.cpp @@ -298,9 +298,9 @@ int main(int argc,char **argv) netconf["ts"] = buf; netconf["peer"] = peerIdentity.address().toString(); sprintf(buf,"%x",mcb); - netconf["mcb"] = mcb; + netconf["mcb"] = buf; sprintf(buf,"%x",mcd); - netconf["mcd"] = mcd; + netconf["mcd"] = buf; if (!isOpen) { // TODO: handle closed networks, look up private membership, |
