mirror of
https://github.com/xdp-project/bpf-examples.git
synced 2024-05-06 15:54:53 +00:00
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]>
10 lines
149 B
Makefile
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
|