aboutgitcodebugslistschat
path: root/Makefile
diff options
context:
space:
mode:
authorDavid Gibson <david@gibson.dropbear.id.au>2023-11-30 13:02:20 +1100
committerStefano Brivio <sbrivio@redhat.com>2023-12-04 09:51:29 +0100
commitcf83988e967405e898f85bec3da04714b1557397 (patch)
tree4922ca437acfd77605e58918a5faac8082145e9c /Makefile
parent460064d262114abc809c5e739789722ca9b0d432 (diff)
downloadpasst-cf83988e967405e898f85bec3da04714b1557397.tar
passt-cf83988e967405e898f85bec3da04714b1557397.tar.gz
passt-cf83988e967405e898f85bec3da04714b1557397.tar.bz2
passt-cf83988e967405e898f85bec3da04714b1557397.tar.lz
passt-cf83988e967405e898f85bec3da04714b1557397.tar.xz
passt-cf83988e967405e898f85bec3da04714b1557397.tar.zst
passt-cf83988e967405e898f85bec3da04714b1557397.zip
pif: Add helpers to get the name of a pif
Future debugging will want to identify a specific passt interface. We make a distinction in these helpers between the name of the *type* of pif, and name of the pif itself. For the time being these are always the same thing, since we have at most instance of each type of pif. However, that might change in future. Signed-off-by: David Gibson <david@gibson.dropbear.id.au> Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index d14b029..af4fa87 100644
--- a/Makefile
+++ b/Makefile
@@ -46,7 +46,8 @@ FLAGS += -DDUAL_STACK_SOCKETS=$(DUAL_STACK_SOCKETS)
PASST_SRCS = arch.c arp.c checksum.c conf.c dhcp.c dhcpv6.c flow.c icmp.c \
igmp.c isolation.c lineread.c log.c mld.c ndp.c netlink.c packet.c \
- passt.c pasta.c pcap.c port_fwd.c tap.c tcp.c tcp_splice.c udp.c util.c
+ passt.c pasta.c pcap.c pif.c port_fwd.c tap.c tcp.c tcp_splice.c udp.c \
+ util.c
QRAP_SRCS = qrap.c
SRCS = $(PASST_SRCS) $(QRAP_SRCS)