From 93f9b4392dbf1a2c77fa57aa80ae888aff4fbd10 Mon Sep 17 00:00:00 2001 From: Adam Ierymenko Date: Thu, 4 Sep 2014 14:25:07 -0700 Subject: Enable configuration of multicast algorithm parameters in netconf --- node/MAC.hpp | 2 ++ node/MulticastGroup.hpp | 6 ++---- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'node') diff --git a/node/MAC.hpp b/node/MAC.hpp index cd749911..e4f69aa6 100644 --- a/node/MAC.hpp +++ b/node/MAC.hpp @@ -158,6 +158,8 @@ public: inline void fromString(const char *s) { char tmp[8]; + for(int i=0;i<6;++i) + tmp[i] = (char)0; Utils::unhex(s,tmp,6); setTo(tmp,6); } diff --git a/node/MulticastGroup.hpp b/node/MulticastGroup.hpp index 659b05d8..cdb8b6db 100644 --- a/node/MulticastGroup.hpp +++ b/node/MulticastGroup.hpp @@ -124,13 +124,11 @@ public: { char hex[17]; unsigned int hexlen = 0; - while ((*s)&&(*s != '/')&&(hexlen < sizeof(hex) - 1)) + while ((*s)&&(*s != '/')&&(hexlen < (sizeof(hex) - 1))) hex[hexlen++] = *s; hex[hexlen] = (char)0; _mac.fromString(hex); - if (*s == '/') - _adi = (uint32_t)Utils::hexStrToULong(++s); - else _adi = 0; + _adi = (*s == '/') ? (uint32_t)Utils::hexStrToULong(s + 1) : (uint32_t)0; } /** -- cgit v1.2.3