diff options
author | Stephen Morris <stephen@isc.org> | 2012-11-19 15:25:31 +0100 |
---|---|---|
committer | Stephen Morris <stephen@isc.org> | 2012-11-19 15:25:31 +0100 |
commit | fab53a075c7817cf2e8bfe06e76851d81c3e0d5c (patch) | |
tree | 380f3095da1aa665eafdb4c60193897a9abd7c0a /src/lib/dhcp/option6_addrlst.cc | |
parent | [master] Merge branch 'trac2373' (diff) | |
download | kea-fab53a075c7817cf2e8bfe06e76851d81c3e0d5c.tar.xz kea-fab53a075c7817cf2e8bfe06e76851d81c3e0d5c.zip |
[1486] Rename IOAddress::from_bytes() to IOAddress::fromBytes()
... to conform to coding standards.
Diffstat (limited to 'src/lib/dhcp/option6_addrlst.cc')
-rw-r--r-- | src/lib/dhcp/option6_addrlst.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/dhcp/option6_addrlst.cc b/src/lib/dhcp/option6_addrlst.cc index 1af10b5bc4..c53fe780e8 100644 --- a/src/lib/dhcp/option6_addrlst.cc +++ b/src/lib/dhcp/option6_addrlst.cc @@ -84,7 +84,7 @@ void Option6AddrLst::unpack(OptionBufferConstIter begin, << " is not divisible by 16."); } while (begin != end) { - addrs_.push_back(IOAddress::from_bytes(AF_INET6, &(*begin))); + addrs_.push_back(IOAddress::fromBytes(AF_INET6, &(*begin))); begin += V6ADDRESS_LEN; } } |