/* * Copyright (c) 2018-2020, Andreas Kling * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include namespace IPC { template class ConnectionToServer : public IPC::Connection , public ClientEndpoint::Stub , public ServerEndpoint::template Proxy { public: using ClientStub = typename ClientEndpoint::Stub; using IPCProxy = typename ServerEndpoint::template Proxy; ConnectionToServer(ClientStub& local_endpoint, Transport transport) : Connection(local_endpoint, move(transport)) , ServerEndpoint::template Proxy(*this, {}) { } virtual void die() override { // Override this function if you don't want your app to exit if it loses the connection. exit(0); } }; }