mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 12:48:10 +00:00

This is a wrapper around a string representing a domain name (such as "example.com"). It never has a trailing dot. For now, this class doesn't do much except wrap the raw string. Subsequent commits will add or move more functionality to it.
16 lines
365 B
CMake
16 lines
365 B
CMake
compile_ipc(LookupServer.ipc LookupServerEndpoint.h)
|
|
compile_ipc(LookupClient.ipc LookupClientEndpoint.h)
|
|
|
|
set(SOURCES
|
|
DNSAnswer.cpp
|
|
DNSName.cpp
|
|
DNSPacket.cpp
|
|
LookupServer.cpp
|
|
LookupServerEndpoint.h
|
|
LookupClientEndpoint.h
|
|
ClientConnection.cpp
|
|
main.cpp
|
|
)
|
|
|
|
serenity_bin(LookupServer)
|
|
target_link_libraries(LookupServer LibCore LibIPC)
|