Files
Magnus Karlsson dbf4feb043 AF_XDP-forwarding: move xsk_fwd to bpf-examples
Move the xsk_fwd example application from the Linux repo to
bpf-examples. This sample demonstrates the ability to share a umem
between multiple sockets by implementing a simple packet forwarding
application. It also has a buffer pool manager for allocating and
freeing packet buffers.

Signed-off-by: Magnus Karlsson <[email protected]>
2022-09-21 11:58:41 +00:00

10 lines
149 B
Makefile

# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
USER_TARGETS := xsk_fwd
LDLIBS += -lpthread
LIB_DIR = ../lib
include $(LIB_DIR)/common.mk