diff options
author | Laurent Vivier <lvivier@redhat.com> | 2023-12-04 17:44:12 +0100 |
---|---|---|
committer | Laurent Vivier <lvivier@redhat.com> | 2024-03-12 10:54:16 +0100 |
commit | 9cc20cbdb1c5356f1276a3a54f67a0b9ee01c065 (patch) | |
tree | 1c082b3b88d219eebf7c09f73f97e92605b04448 /Makefile | |
parent | c38f2608202c96a4b0850eb09460efe5467f3968 (diff) | |
download | passt-9cc20cbdb1c5356f1276a3a54f67a0b9ee01c065.tar passt-9cc20cbdb1c5356f1276a3a54f67a0b9ee01c065.tar.gz passt-9cc20cbdb1c5356f1276a3a54f67a0b9ee01c065.tar.bz2 passt-9cc20cbdb1c5356f1276a3a54f67a0b9ee01c065.tar.lz passt-9cc20cbdb1c5356f1276a3a54f67a0b9ee01c065.tar.xz passt-9cc20cbdb1c5356f1276a3a54f67a0b9ee01c065.tar.zst passt-9cc20cbdb1c5356f1276a3a54f67a0b9ee01c065.zip |
tcp: move buffers management functions to their own file
Signed-off-by: Laurent Vivier <lvivier@redhat.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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_splice.c udp.c util.c + tcp_buf.c tcp_splice.c udp.c util.c QRAP_SRCS = qrap.c SRCS = $(PASST_SRCS) $(QRAP_SRCS) @@ -56,7 +56,7 @@ 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_conn.h tcp_splice.h udp.h util.h + tcp.h tcp_buf.h tcp_conn.h tcp_splice.h udp.h util.h HEADERS = $(PASST_HEADERS) seccomp.h C := \#include <linux/tcp.h>\nstruct tcp_info x = { .tcpi_snd_wnd = 0 }; |