summaryrefslogtreecommitdiffstats
path: root/src/lib/dhcp/option6_ia.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* [4497] SpellingFrancis Dupont2016-07-081-1/+1
|
* [4497] Documented Option::clone() in all option classes.Marcin Siodelski2016-07-081-1/+2
| | | | Also udated copyright dates where applicable.
* [4497] Implemented deep copy of DHCP options.Marcin Siodelski2016-07-081-0/+2
|
* [4497] Fix constness of methods in Option classes.Marcin Siodelski2016-07-081-4/+3
|
* [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
|
* [3036] Generate NameChangeRequests for Solicit, Request, Renew and Release.Marcin Siodelski2013-07-261-2/+7
|
* [2325] Option6IA::setIAID() implemented.Tomek Mrugalski2012-12-041-2/+7
|
* [2475] Put #include directives in correct orderStephen Morris2012-11-161-4/+5
| | | | Also fix some issues from the review.
* [1540] Huge (29 files changed) Option6 and Pkt6 refactoring in DHCP.Tomek Mrugalski2012-02-031-43/+21
| | | | | | | | - Migrated from boost::shared_array to std::vector<uint8> - Pkt6 now have all fields private, getters/setters implemented - Many smaller clean-ups - Tests updated to follow new procedure - isc::util::OutputBuffer is now used
* [1350] Changes after review:Tomek Mrugalski2011-11-291-1/+1
| | | | | | | - len() returns now uint16_t type - using pre-increment intead of post-increment - using distance() function - moved some simple implementation to header
* cppcheck warnings removed.Tomek Mrugalski2011-10-171-3/+3
|
* [1186] Changes after second reviewTomek Mrugalski2011-10-141-4/+5
| | | | | - added passing by reference in many places - started using writeUint16/readUint16 functions
* [1186] Part 6 of review changes.Tomek Mrugalski2011-10-141-24/+73
| | | | | | | | - Added V6ADDRESS_LEN and V4ADDRESS_LEN - Removed unnecessary parameters to Option constructors - Many missing Doxygen comments added - using sizeof(uintXX_t) instead of 2 and 4 in pack()/unpack() - Many other smaller changes.
* [1186] Part 3 of review changesTomek Mrugalski2011-10-141-4/+4
| | | | | - buffer type changed: char => uint8_t - removed unnecessary statements in Makefile.am
* [1186] Remaining tests for DHCPv6 Options fixed/implemented.Tomek Mrugalski2011-10-141-15/+27
|
* [1186] Added suboptions support in Option class, tests implemented.Tomek Mrugalski2011-10-141-1/+1
|
* [878] Support for IA and IAADDR options and suboptions added.Tomek Mrugalski2011-10-141-0/+75
- IA support (Option6IA class) added. - Support for suboptions in IA option. - IAADDR support (Option6IAAddr class) added. - Initial tests added for new classes added.