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

Move over the CoreIPC::Server and CoreIPC::Client namespace stuff into LibIPC where it will soon becomes LibIPC-style things.
30 lines
1.2 KiB
C++
30 lines
1.2 KiB
C++
#pragma once
|
|
|
|
#include <AK/Badge.h>
|
|
#include <LibIPC/IClientConnection.h>
|
|
#include <ProtocolServer/ProtocolServerEndpoint.h>
|
|
|
|
class Download;
|
|
class SharedBuffer;
|
|
|
|
class PSClientConnection final : public IPC::Server::ConnectionNG<ProtocolServerEndpoint>
|
|
, public ProtocolServerEndpoint {
|
|
C_OBJECT(PSClientConnection)
|
|
public:
|
|
explicit PSClientConnection(CLocalSocket&, int client_id);
|
|
~PSClientConnection() override;
|
|
|
|
virtual void die() override;
|
|
|
|
void did_finish_download(Badge<Download>, Download&, bool success);
|
|
void did_progress_download(Badge<Download>, Download&);
|
|
|
|
private:
|
|
virtual OwnPtr<ProtocolServer::GreetResponse> handle(const ProtocolServer::Greet&) override;
|
|
virtual OwnPtr<ProtocolServer::IsSupportedProtocolResponse> handle(const ProtocolServer::IsSupportedProtocol&) override;
|
|
virtual OwnPtr<ProtocolServer::StartDownloadResponse> handle(const ProtocolServer::StartDownload&) override;
|
|
virtual OwnPtr<ProtocolServer::StopDownloadResponse> handle(const ProtocolServer::StopDownload&) override;
|
|
virtual OwnPtr<ProtocolServer::DisownSharedBufferResponse> handle(const ProtocolServer::DisownSharedBuffer&) override;
|
|
|
|
HashMap<i32, RefPtr<SharedBuffer>> m_shared_buffers;
|
|
};
|