Kea  1.9.9-git
yang_revisions.h
Go to the documentation of this file.
1 // Copyright (C) 2018-2019 Internet Systems Consortium, Inc. ("ISC")
2 //
3 // This Source Code Form is subject to the terms of the Mozilla Public
4 // License, v. 2.0. If a copy of the MPL was not distributed with this
5 // file, You can obtain one at http://mozilla.org/MPL/2.0/.
6 
7 #ifndef ISC_YANG_REVISIONS_H
8 #define ISC_YANG_REVISIONS_H 1
9 
10 #include <map>
11 #include <string>
12 
13 namespace isc {
14 namespace yang {
15 
16 // Table of module name / revision.
17 static const std::map<std::string, std::string> YANG_REVISIONS = {
18 #ifdef KEATEST_MODULE
19  { "keatest-module", "2018-11-20" },
20 #endif // KEATEST_MODULE
21  { "ietf-dhcpv6-types", "2018-09-04" },
22  { "ietf-dhcpv6-options", "2018-09-04" },
23  { "ietf-dhcpv6-server", "2018-09-04" },
24  { "kea-types", "2019-08-12" },
25  { "kea-dhcp-types", "2019-08-12" },
26  { "kea-dhcp4-server", "2019-08-12" },
27  { "kea-dhcp6-server", "2019-08-12" },
28  { "kea-ctrl-agent", "2019-08-12" },
29  { "kea-dhcp-ddns", "2019-08-12" }
30 };
31 
32 }; // end of namespace isc::yang
33 }; // end of namespace isc
34 
35 #endif // ISC_YANG_REVISIONS_H
Defines the logger used by the top-level component of kea-dhcp-ddns.