]> 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 18:25:03 +0000 (13:25 -0500)
commit37b2d32135fe57b1cd950fbb01e236b04c6ac622
tree008b181d31d7e936eec92f1183eb6b667de0fffc
parentcb8b11220d9dc4f4ef76b06d325e1e6e4ff4e567
[#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]