mirror of
https://github.com/RGBCube/serenity
synced 2025-05-17 20:45:09 +00:00

https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#cother-other-default-operation-rules "The compiler is more likely to get the default semantics right and you cannot implement these functions better than the compiler."
32 lines
866 B
C++
32 lines
866 B
C++
/*
|
|
* Copyright (c) 2021, Sergey Bugaev <bugaevc@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/HashMap.h>
|
|
#include <LibIPC/ConnectionFromClient.h>
|
|
#include <LookupServer/LookupClientEndpoint.h>
|
|
#include <LookupServer/LookupServerEndpoint.h>
|
|
|
|
namespace LookupServer {
|
|
|
|
class ConnectionFromClient final
|
|
: public IPC::ConnectionFromClient<LookupClientEndpoint, LookupServerEndpoint> {
|
|
C_OBJECT(ConnectionFromClient);
|
|
|
|
public:
|
|
virtual ~ConnectionFromClient() override = default;
|
|
|
|
virtual void die() override;
|
|
|
|
private:
|
|
explicit ConnectionFromClient(NonnullOwnPtr<Core::Stream::LocalSocket>, int client_id);
|
|
|
|
virtual Messages::LookupServer::LookupNameResponse lookup_name(String const&) override;
|
|
virtual Messages::LookupServer::LookupAddressResponse lookup_address(String const&) override;
|
|
};
|
|
|
|
}
|