mirror of
https://code.semirocket.science/wrapsix
synced 2024-11-08 23:31:00 +02:00
24b09b4d93
New data structure -- linked list Reduced few useless debug outputs
18 lines
444 B
Makefile
18 lines
444 B
Makefile
sbin_PROGRAMS = wrapsix-dnsproxy wrapsix-wrapper
|
|
wrapsix_dnsproxy_SOURCES = dnsproxy.c
|
|
wrapsix_wrapper_SOURCES = \
|
|
arp.c arp.h \
|
|
checksum.c checksum.h \
|
|
ethernet.h \
|
|
icmp.c icmp.h \
|
|
ipv4.c ipv4.h \
|
|
ipv6.c ipv6.h \
|
|
linkedlist.c linkedlist.h \
|
|
log.c log.h \
|
|
nat.c nat.h \
|
|
radixtree.c radixtree.h \
|
|
tcp.c tcp.h \
|
|
transmitter.c transmitter.h \
|
|
udp.c udp.h \
|
|
wrapper.c wrapper.h
|