]> git.ipfire.org Git - thirdparty/kea.git/commit
[#260,!120] Addressed more review comments
authorThomas Markwalder <tmark@isc.org>
Tue, 20 Nov 2018 11:31:38 +0000 (06:31 -0500)
committerThomas Markwalder <tmark@isc.org>
Tue, 20 Nov 2018 11:31:38 +0000 (06:31 -0500)
commitfaaf5c38c4fab45d520cf4c63f48985e558d4803
tree76cfdf63ba8c843d5b3ce6c9aba4b117f9904d71
parent5689ddd78be3114e287014a7a62b11cd9df0b823
[#260,!120] Addressed more review comments

doc/guide/congestion-handling.xml
    Added subsections to Congestion Handling chapter

src/lib/dhcp/iface_mgr.*
    Removed Receiver class, replaced with new class lib::util::thread::WatchedThread
    Renamed IfaceMgr::receiver_ to dhcp_receiver
    Renamed add_fd to addFDtoSet

src/lib/dhcp/packet_queue_mgr.h
    PacketQueueMgr::unregisterFactory() - destroys queue instance
    if it matches type being unregistered

New files:
src/lib/util/threads/
    watched_thread.h
    watched_thread.cc

src/lib/util/threads/tests
    watched_thread_unittest.cc
12 files changed:
doc/guide/congestion-handling.xml
src/lib/dhcp/iface_mgr.cc
src/lib/dhcp/iface_mgr.h
src/lib/dhcp/packet_queue_mgr.h
src/lib/dhcp/tests/iface_mgr_unittest.cc
src/lib/dhcp/tests/packet_queue_mgr4_unittest.cc
src/lib/dhcp/tests/packet_queue_mgr6_unittest.cc
src/lib/util/threads/Makefile.am
src/lib/util/threads/tests/Makefile.am
src/lib/util/threads/tests/watched_thread_unittest.cc [new file with mode: 0644]
src/lib/util/threads/watched_thread.cc [new file with mode: 0644]
src/lib/util/threads/watched_thread.h [new file with mode: 0644]