mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-26 09:30:24 +00:00
5e47508672
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.
12 lines
170 B
Makefile
12 lines
170 B
Makefile
OBJS = \
|
|
LookupServer.o \
|
|
DNSRequest.o \
|
|
DNSResponse.o \
|
|
DNSAnswer.o \
|
|
main.o
|
|
|
|
PROGRAM = LookupServer
|
|
|
|
LIB_DEPS = Core
|
|
|
|
include ../../Makefile.common
|