This is an automated email from the ASF dual-hosted git repository.
xiaoxiang pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/nuttx.git
from 85a375cd7d drivers/serial: check the remote device before get name
new c7845f5b25 netlink: Explicitly set ip address for netlink notify
new 96233e0c42 net/netdev: Support multiple IPv6 addresses per device
new 2b9633e652 net: Support multiple IPv6 address per netdev
new 7f421a46ca net/procfs: Support printing multiple IPv6 address per
netdev
new 3e4d847f42 net/netdev: Support managing multiple IPv6 addresses by
ioctl
new 4c99ad1ba9 net/utils: Switch argument order of net_ipv6_pref2mask
new 6403965075 Documentation: Add netdev description with multiple IPv6
addresses
The 7 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
Documentation/reference/os/netdev.rst | 187 +++++++++
drivers/net/rpmsgdrv.c | 2 +-
include/netinet/in.h | 7 +
include/nuttx/compiler.h | 8 +
include/nuttx/net/net.h | 4 +-
include/nuttx/net/netdev.h | 171 +++++++-
net/devif/devif_loopback.c | 2 +-
net/devif/ipv6_input.c | 4 +-
net/icmpv6/icmpv6.h | 1 +
net/icmpv6/icmpv6_advertise.c | 5 +-
net/icmpv6/icmpv6_autoconfig.c | 23 +-
net/icmpv6/icmpv6_input.c | 9 +-
net/icmpv6/icmpv6_neighbor.c | 3 +-
net/icmpv6/icmpv6_radvertise.c | 35 +-
net/icmpv6/icmpv6_reply.c | 3 +-
net/icmpv6/icmpv6_rnotify.c | 35 +-
net/icmpv6/icmpv6_rsolicit.c | 3 +-
net/icmpv6/icmpv6_sendmsg.c | 6 +-
net/icmpv6/icmpv6_solicit.c | 2 +-
net/inet/ipv6_getsockname.c | 3 +-
net/mld/mld_query.c | 14 +-
net/mld/mld_send.c | 13 +-
net/neighbor/neighbor_ethernet_out.c | 3 +-
net/neighbor/neighbor_lookup.c | 2 +-
net/netdev/CMakeLists.txt | 4 +
net/netdev/Kconfig | 18 +
net/netdev/Make.defs | 4 +
net/netdev/netdev_findbyaddr.c | 6 +-
net/netdev/netdev_ifconf.c | 102 +++--
net/netdev/netdev_ioctl.c | 135 ++++--
net/netdev/netdev_ipv6.c | 466 +++++++++++++++++++++
net/netlink/netlink.h | 5 +-
net/netlink/netlink_route.c | 99 +++--
net/procfs/netdev_statistics.c | 36 +-
net/route/netdev_router.c | 3 +-
net/sixlowpan/sixlowpan_tcpsend.c | 3 +-
net/sixlowpan/sixlowpan_udpsend.c | 3 +-
net/sixlowpan/sixlowpan_utils.c | 3 +-
net/tcp/tcp_conn.c | 3 +-
net/tcp/tcp_connect.c | 3 +-
net/tcp/tcp_send.c | 8 +-
net/udp/udp_conn.c | 4 +-
net/udp/udp_send.c | 3 +-
net/usrsock/usrsock_ioctl.c | 2 +-
net/utils/CMakeLists.txt | 5 +-
net/utils/Make.defs | 4 +-
net/utils/net_ipv6_pref2mask.c | 4 +-
.../{net_ipv6_mask2pref.c => net_mask2pref.c} | 86 +++-
net/utils/utils.h | 51 ++-
49 files changed, 1414 insertions(+), 191 deletions(-)
create mode 100644 Documentation/reference/os/netdev.rst
create mode 100644 net/netdev/netdev_ipv6.c
rename net/utils/{net_ipv6_mask2pref.c => net_mask2pref.c} (67%)