Browse Source

[3400] Files renamed to {kea,bundy}_controller.cc

Tomek Mrugalski 11 years ago
parent
commit
21369c1149

+ 2 - 2
src/bin/dhcp6/Makefile.am

@@ -59,11 +59,11 @@ b10_dhcp6_SOURCES += ctrl_dhcp6_srv.cc ctrl_dhcp6_srv.h
 b10_dhcp6_SOURCES += json_config_parser.cc json_config_parser.h
 
 if CONFIG_BACKEND_BUNDY
-b10_dhcp6_SOURCES += bundy_backend.cc
+b10_dhcp6_SOURCES += bundy_controller.cc
 endif
 
 if CONFIG_BACKEND_JSON
-b10_dhcp6_SOURCES += jsonfile_backend.cc
+b10_dhcp6_SOURCES += jsonfile_controller.cc
 endif
 
 nodist_b10_dhcp6_SOURCES = dhcp6_messages.h dhcp6_messages.cc

src/bin/dhcp6/bundy_backend.cc → src/bin/dhcp6/bundy_controller.cc


src/bin/dhcp6/jsonfile_backend.cc → src/bin/dhcp6/kea_controller.cc


+ 2 - 2
src/bin/dhcp6/tests/Makefile.am

@@ -91,12 +91,12 @@ dhcp6_unittests_SOURCES += config_parser_unittest.cc
 if CONFIG_BACKEND_BUNDY
 # For Bundy backend, we only need to run the usual tests. There are no
 # Bundy-specific tests yet.
-dhcp6_unittests_SOURCES += ../bundy_backend.cc
+dhcp6_unittests_SOURCES += ../bundy_controller.cc
 dhcp6_unittests_SOURCES += bundy_backend_unittest.cc
 endif
 
 if CONFIG_BACKEND_JSON
-dhcp6_unittests_SOURCES += ../jsonfile_backend.cc
+dhcp6_unittests_SOURCES += ../jsonfile_controller.cc
 dhcp6_unittests_SOURCES += jsonfile_backend_unittest.cc
 endif