1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 17:27:35 +00:00

LookupServer: Convert to Core::Stream::UDPSocket

This commit is contained in:
sin-ack 2022-02-06 17:13:04 +00:00 committed by Andreas Kling
parent 17d3592cab
commit 4ca0669d1e
5 changed files with 43 additions and 45 deletions

View file

@ -16,7 +16,7 @@ class DNSServer : public Core::UDPServer {
private:
explicit DNSServer(Object* parent = nullptr);
void handle_client();
ErrorOr<void> handle_client();
};
}