70c59a9d91
Squashed commit of the following: net/icmpv6: IPPROT_ICMP6 socket logic now builds without error. net/icmpv6: Add support for read-ahead and poll(). Initial commit is just cloned from ICMP with the appropriate name changes. configs/: All defconfig filess that include CONFIG_NET_ICMPv6_SOCKET=y need to select CONFIG_SYSTEM_PING6=y and deselect CONFIG_DISABLE_POLL. Update NSH documention to show that ping6 is now a built in command. net/icmpv6: Add icmpv6_sendto.c and icmpv6_recvfrom.c. Initial versions are just clones from icmp/ with appropriate name changes. net/icmpv6: Clone some ICMP socket logic as the beginning of support for ICMPv6 socket support. Rename CONFIG_NET_ICMPv6_PING to CONFIG_NET_ICMPv6_SOCKET. Move prototype for icmpv6_ping from include/nuttx/net/icmpv6 to net/icmpv6/icmpv6.h
74 lines
2.5 KiB
Plaintext
74 lines
2.5 KiB
Plaintext
############################################################################
|
|
# net/icmpv6/Make.defs
|
|
#
|
|
# Copyright (C) 2015, 2017 Gregory Nutt. All rights reserved.
|
|
# Author: Gregory Nutt <gnutt@nuttx.org>
|
|
#
|
|
# Redistribution and use in source and binary forms, with or without
|
|
# modification, are permitted provided that the following conditions
|
|
# are met:
|
|
#
|
|
# 1. Redistributions of source code must retain the above copyright
|
|
# notice, this list of conditions and the following disclaimer.
|
|
# 2. Redistributions in binary form must reproduce the above copyright
|
|
# notice, this list of conditions and the following disclaimer in
|
|
# the documentation and/or other materials provided with the
|
|
# distribution.
|
|
# 3. Neither the name NuttX nor the names of its contributors may be
|
|
# used to endorse or promote products derived from this software
|
|
# without specific prior written permission.
|
|
#
|
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
# FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
# COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
|
# OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
|
# AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
|
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
# POSSIBILITY OF SUCH DAMAGE.
|
|
#
|
|
############################################################################
|
|
|
|
ifeq ($(CONFIG_NET_ICMPv6),y)
|
|
|
|
# ICMPv6 source files
|
|
|
|
NET_CSRCS += icmpv6_input.c icmpv6_solicit.c icmpv6_advertise.c
|
|
|
|
ifeq ($(CONFIG_NET_ICMPv6_SOCKET),y)
|
|
SOCK_CSRCS += icmpv6_sockif.c icmpv6_conn.c icmpv6_sendto.c
|
|
SOCK_CSRCS += icmpv6_recvfrom.c
|
|
ifeq ($(CONFIG_MM_IOB),y)
|
|
SOCK_CSRCS += icmpv6_netpoll.c
|
|
endif
|
|
endif
|
|
|
|
ifeq ($(CONFIG_NET_ICMPv6_NEIGHBOR),y)
|
|
NET_CSRCS += icmpv6_neighbor.c icmpv6_notify.c
|
|
endif
|
|
|
|
ifeq ($(CONFIG_NET_ICMPv6_SOCKET),y)
|
|
SOCK_CSRCS += icmpv6_poll.c
|
|
else ifeq ($(CONFIG_NET_ICMPv6_NEIGHBOR),y)
|
|
NET_CSRCS += icmpv6_poll.c
|
|
endif
|
|
|
|
ifeq ($(CONFIG_NET_ICMPv6_AUTOCONF),y)
|
|
NET_CSRCS += icmpv6_autoconfig.c icmpv6_rsolicit.c icmpv6_rnotify.c
|
|
endif
|
|
|
|
ifeq ($(CONFIG_NET_ICMPv6_ROUTER),y)
|
|
NET_CSRCS += icmpv6_radvertise.c
|
|
endif
|
|
|
|
# Include ICMPv6 build support
|
|
|
|
DEPPATH += --dep-path icmpv6
|
|
VPATH += :icmpv6
|
|
|
|
endif
|