summaryrefslogtreecommitdiffstats
path: root/src/bin/dhcp4/tests/d2_unittest.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* [#3605] Remove extra semisAndrei Pavel2024-10-231-4/+4
|
* [4236] Updated copyright dates in all files.Marcin Siodelski2015-12-161-1/+1
|
* [4236] Replaced license text in all files containing it.Marcin Siodelski2015-12-161-11/+3
|
* [3796] command_interpreter.cc|h|tests moved: src/lib/config => src/lib/ccTomek Mrugalski2015-06-101-1/+1
|
* [3796] ccsession.cc|h renamed to command_interpreter.cc|hTomek Mrugalski2015-05-201-1/+1
|
* spellingFrancis Dupont2015-01-221-2/+2
|
* [3405] LeaseMgr is not started until server is configured.Marcin Siodelski2014-06-041-1/+1
| | | | | | | | Starting lease manager in the server constructor implied the use of the default memfile for a short period until the server is configured. The default memfile configuration used the persistence (writing leases to disk) which in many cases required root privileges. This caused some unit tests to fail.
* [3328] Addressed review commentsThomas Markwalder2014-04-241-4/+8
| | | | | | | | Fixed typos and replaced used of DHCPv<n> with b10-dhcp<n> in D2 relevant sections of the admin guide. Added sender_ip and max_queue_size value to dhcp4 and dhcp6 unit tests. Added used of DFT constants in D2ClientCfg default constructor.
* [3328] Added additional validation in D2ClientCfgThomas Markwalder2014-04-171-1/+3
| | | | | | | Added checks in D2ClientCfg to make user server and sender ip values are the same family, and that the server ip/port is not exactly the same as the sender ip/port.
* [3329] Added D2ClientMgr control into b10-dhcp4Thomas Markwalder2014-02-131-0/+117
Server now starts D2ClientMgr send mode after configuration if updates are enabled, and provides an error handler to intervene if D2 communications fail. Added new unitests in d2_unittest.h and .cc.