commit | b2369a19b8249ae45e501dc453a099f2a20a320f | [log] [tgz] |
---|---|---|
author | Sean Edmond <seanedmond@microsoft.com> | Tue Jul 25 16:13:29 2023 -0700 |
committer | Tom Rini <trini@konsulko.com> | Sun Nov 05 13:28:40 2023 -0500 |
tree | 452334a24895d2eddcbf984a2f73f7b616d14486 | |
parent | 5d260d08009e9bf4b4aec0e414e68ab30e784602 [diff] |
net: dhcp6: Fix OPT_BOOTFILE_PARAM parsing RFC 5970 states that OPT_BOOTFILE_PARAM (option 60) can be multiple parameters that start with a 16-bit length field followed by the parameter. For example: [ param-len 1 (16-bits) ] [ parameter 1 (variable length) ] This fix ensure we're considering "param-len 1" in the parsing. Signed-off-by: Sean Edmond <seanedmond@microsoft.com>