Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-12-21 | dhcp: T5846: Ensure DUID regex range is bound | Indrajit Raychaudhuri | |
The DUID regex was missing a lower bound, which could cause it not to match when it should. We have to specify the lower bound explicitly as 0 to keep the regex behavior similar to that in Python (in Python, omitting the lower bound is equivalent to specifying 0). | |||
2023-12-21 | dhcp: T5846: Refactor and simplify DUID definition | Indrajit Raychaudhuri | |
Refactor DUID XML definition in conf-mode to be reusable. Additionally, remove explicit call to a separate validator `ipv6-duid` and inline the regex into the XML definition. |