blob: 206298124f89fde50e0abedc5652668eac1dedff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
// Copyright (C) 2017 Internet Systems Consortium, Inc. ("ISC")
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
#include <dhcp/option.h>
#include <dhcpsrv/cfg_4o6.h>
#include <string>
#include <string.h>
#include <sstream>
#include <vector>
using namespace isc::data;
namespace isc {
namespace dhcp {
ElementPtr
Cfg4o6::toElement() const {
ElementPtr result = Element::createMap();
// Set 4o6-interface
result->set("4o6-interface", Element::create(iface4o6_));
// Set 4o6-subnet
if (!subnet4o6_.first.isV6Zero() || (subnet4o6_.second != 128u)) {
std::ostringstream oss;
oss << subnet4o6_.first << "/"
<< static_cast<unsigned>(subnet4o6_.second);
result->set("4o6-subnet", Element::create(oss.str()));
} else {
result->set("4o6-subnet", Element::create(std::string()));
}
// Set 4o6-interface-id
if (interface_id_) {
std::vector<uint8_t> bin = interface_id_->toBinary();
std::string iid;
iid.resize(bin.size());
if (!bin.empty()) {
std::memcpy(&iid[0], &bin[0], bin.size());
}
result->set("4o6-interface-id", Element::create(iid));
} else {
result->set("4o6-interface-id", Element::create(std::string()));
}
return (result);
}
} // end of isc::dhcp namespace
} // end of isc namespace
|