4c99ad1ba9
When implementing IPv6-related logic, we found the `net_ipv6_pref2mask` and `net_ipv6addr_copy` are using different argument order: ``` net_ipv6addr_copy(ifaddr->addr, addr); net_ipv6_pref2mask(preflen, ifaddr->mask); ``` Change the order to: ``` net_ipv6addr_copy(ifaddr->addr, addr); net_ipv6_pref2mask(ifaddr->mask, preflen); ``` Signed-off-by: Zhe Weng <wengzhe@xiaomi.com> |
||
---|---|---|
.. | ||
CMakeLists.txt | ||
Kconfig | ||
Make.defs | ||
net_chksum.c | ||
net_cmsg.c | ||
net_dsec2tick.c | ||
net_dsec2timeval.c | ||
net_getrandom.c | ||
net_icmpchksum.c | ||
net_incr32.c | ||
net_iob_concat.c | ||
net_ipchksum.c | ||
net_ipv6_maskcmp.c | ||
net_ipv6_pref2mask.c | ||
net_lock.c | ||
net_mask2pref.c | ||
net_snoop.c | ||
net_tcpchksum.c | ||
net_timeval2dsec.c | ||
net_udpchksum.c | ||
utils.h |