aboutgitcodebugslistschat
path: root/Makefile
diff options
context:
space:
mode:
authorLaurent Vivier <lvivier@redhat.com>2023-11-14 16:18:01 +0100
committerLaurent Vivier <lvivier@redhat.com>2024-03-12 13:58:27 +0100
commit2d5528c9be58cccdcff47dc16ab4715cddcbedf8 (patch)
tree69fa1cd469506f730fc1c864ad863f14aa0717f8 /Makefile
parent1bf4abe4021192a4bcd5d400b699552f2a6d5777 (diff)
downloadpasst-2d5528c9be58cccdcff47dc16ab4715cddcbedf8.tar
passt-2d5528c9be58cccdcff47dc16ab4715cddcbedf8.tar.gz
passt-2d5528c9be58cccdcff47dc16ab4715cddcbedf8.tar.bz2
passt-2d5528c9be58cccdcff47dc16ab4715cddcbedf8.tar.lz
passt-2d5528c9be58cccdcff47dc16ab4715cddcbedf8.tar.xz
passt-2d5528c9be58cccdcff47dc16ab4715cddcbedf8.tar.zst
passt-2d5528c9be58cccdcff47dc16ab4715cddcbedf8.zip
tcp: vhost-user RX nocopy
Signed-off-by: Laurent Vivier <lvivier@redhat.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index d853264..c422347 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 vhost_user.c virtio.c
+ tcp_buf.c tcp_splice.c tcp_vu.c udp.c util.c vhost_user.c virtio.c
QRAP_SRCS = qrap.c
SRCS = $(PASST_SRCS) $(QRAP_SRCS)
@@ -56,8 +56,8 @@ MANPAGES = passt.1 pasta.1 qrap.1
PASST_HEADERS = arch.h arp.h checksum.h conf.h dhcp.h dhcpv6.h flow.h fwd.h \
flow_table.h icmp.h inany.h iov.h ip.h isolation.h lineread.h log.h \
ndp.h netlink.h packet.h passt.h pasta.h pcap.h pif.h siphash.h tap.h \
- tcp.h tcp_buf.h tcp_conn.h tcp_splice.h udp.h util.h vhost_user.h \
- virtio.h
+ tcp.h tcp_buf.h tcp_conn.h tcp_splice.h tcp_vu.h udp.h util.h \
+ vhost_user.h virtio.h
HEADERS = $(PASST_HEADERS) seccomp.h
C := \#include <linux/tcp.h>\nstruct tcp_info x = { .tcpi_snd_wnd = 0 };