mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-21 02:05:21 +00:00
net: route: Add prefix-based ipv6 multicast forwarding This adds/reenables the feature of multicast routing/forwarding. The forwarding decision is based on the added multicast routes and the new network interface flag: NET_IF_FORWARD_MULTICASTS. Signed-off-by: Jan Georgi <jan.georgi@lemonbeat.com>
10 lines
297 B
CMake
10 lines
297 B
CMake
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
cmake_minimum_required(VERSION 3.13.1)
|
|
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
|
|
project(route_mcast)
|
|
|
|
target_include_directories(app PRIVATE ${ZEPHYR_BASE}/subsys/net/ip)
|
|
FILE(GLOB app_sources src/*.c)
|
|
target_sources(app PRIVATE ${app_sources})
|