aboutgitcodebugslistschat
path: root/Makefile
diff options
context:
space:
mode:
authorLaurent Vivier <lvivier@redhat.com>2024-08-02 18:10:36 +0200
committerStefano Brivio <sbrivio@redhat.com>2024-08-05 17:38:17 +0200
commite877f905e5fc5900c2c8dd9378e39705b21aec82 (patch)
treefcc5d4f184448e3c703b9b69f36c7f2b5b5d1990 /Makefile
parent623ceb1f2b9051e3c6b34c99463a22a558b74674 (diff)
downloadpasst-e877f905e5fc5900c2c8dd9378e39705b21aec82.tar
passt-e877f905e5fc5900c2c8dd9378e39705b21aec82.tar.gz
passt-e877f905e5fc5900c2c8dd9378e39705b21aec82.tar.bz2
passt-e877f905e5fc5900c2c8dd9378e39705b21aec82.tar.lz
passt-e877f905e5fc5900c2c8dd9378e39705b21aec82.tar.xz
passt-e877f905e5fc5900c2c8dd9378e39705b21aec82.tar.zst
passt-e877f905e5fc5900c2c8dd9378e39705b21aec82.zip
udp_flow: move all udp_flow functions to udp_flow.c
No code change. They need to be exported to be available by the vhost-user version of passt. Signed-off-by: Laurent Vivier <lvivier@redhat.com> Reviewed-by: David Gibson <david@gibson.dropbear.id.au> Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index bd504d2..b6329e3 100644
--- a/Makefile
+++ b/Makefile
@@ -47,7 +47,7 @@ FLAGS += -DDUAL_STACK_SOCKETS=$(DUAL_STACK_SOCKETS)
PASST_SRCS = arch.c arp.c checksum.c conf.c dhcp.c dhcpv6.c flow.c fwd.c \
icmp.c igmp.c inany.c iov.c ip.c isolation.c lineread.c log.c mld.c \
ndp.c netlink.c packet.c passt.c pasta.c pcap.c pif.c tap.c tcp.c \
- tcp_buf.c tcp_splice.c udp.c util.c
+ tcp_buf.c tcp_splice.c udp.c udp_flow.c util.c
QRAP_SRCS = qrap.c
SRCS = $(PASST_SRCS) $(QRAP_SRCS)