ladybird/Servers/LookupServer/Makefile
Andreas Kling 5e47508672 LookupServer: Cache DNS answers for TTL seconds
We now keep DNS answers around in a cache for TTL seconds after getting
them the first time. The cache is capped at 256 responses for now.

Suggested by @zecke in #10.
2020-01-26 15:44:51 +01:00

12 lines
170 B
Makefile

OBJS = \
LookupServer.o \
DNSRequest.o \
DNSResponse.o \
DNSAnswer.o \
main.o
PROGRAM = LookupServer
LIB_DEPS = Core
include ../../Makefile.common