mirror of
https://github.com/RGBCube/serenity
synced 2026-01-14 05:01:00 +00:00
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
|