commit | e917c3625ade33c92a85b30c020c2128f7648299 | [log] [tgz] |
---|---|---|
author | Chris Packham <judge.packham@gmail.com> | Wed Jan 04 13:36:25 2017 +1300 |
committer | Tom Rini <trini@konsulko.com> | Sat Jan 14 16:47:11 2017 -0500 |
tree | ec3fdcbd07b4ea95cfd5a20dc000cdb24ddcf1dc | |
parent | e4829f3c8999e4e76a6ff567b9473a0020fe37df [diff] |
lib: net_utils: make string_to_ip stricter Previously values greater than 255 were implicitly truncated. Add some stricter checking to reject addresses with components >255. With the input "1234192.168.1.1" the old behaviour would truncate the address to 192.168.1.1. New behaviour rejects the string outright and returns 0.0.0.0, which for the purposes of IP addresses can be considered an error. Signed-off-by: Chris Packham <judge.packham@gmail.com>