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
50
51
// Copyright (C) 2017-2019 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 <config.h>

#include <dhcp/option.h>
#include <dhcpsrv/cfg_4o6.h>
#include <string><--- Include file:  not found. Please note: Cppcheck does not need standard library headers to get proper results.
#include <string.h><--- Include file:  not found. Please note: Cppcheck does not need standard library headers to get proper results.
#include <sstream><--- Include file:  not found. Please note: Cppcheck does not need standard library headers to get proper results.
#include <vector><--- Include file:  not found. Please note: Cppcheck does not need standard library headers to get proper results.

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_.get().first.isV6Zero() || (subnet4o6_.get().second != 128u)) {
        std::ostringstream oss;
        oss << subnet4o6_.get().first << "/"
            << static_cast<unsigned>(subnet4o6_.get().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