Deskflow 1.24.0.365
Keyboard and mouse sharing utility
Loading...
Searching...
No Matches
ClientProxy1_5.h
Go to the documentation of this file.
1/*
2 * Deskflow -- mouse and keyboard sharing utility
3 * SPDX-FileCopyrightText: (C) 2013 - 2016 Symless Ltd.
4 * SPDX-License-Identifier: GPL-2.0-only WITH LicenseRef-OpenSSL-Exception
5 */
6
7#pragma once
8
10
11class Server;
12class IEventQueue;
13
16{
17public:
18 ClientProxy1_5(const std::string &name, deskflow::IStream *adoptedStream, Server *server, IEventQueue *events);
19 ClientProxy1_5(ClientProxy1_5 const &) = delete;
21 ~ClientProxy1_5() override = default;
22
25
26 void sendDragInfo(uint32_t fileCount, const char *info, size_t size) override;
27 void fileChunkSending(uint8_t mark, char *data, size_t dataSize) override;
28 bool parseMessage(const uint8_t *code) override;
29 void fileChunkReceived() const;
30 void dragInfoReceived() const;
31};
static const struct sockaddr FAR * name
Definition ArchNetworkWinsock.cpp:28
static int void FAR * data
Definition ArchNetworkWinsock.cpp:35
ClientProxy1_4(const std::string &name, deskflow::IStream *adoptedStream, Server *server, IEventQueue *events)
Definition ClientProxy1_4.cpp:20
void sendDragInfo(uint32_t fileCount, const char *info, size_t size) override
Definition ClientProxy1_5.cpp:26
ClientProxy1_5(ClientProxy1_5 &&)=delete
ClientProxy1_5 & operator=(ClientProxy1_5 const &)=delete
bool parseMessage(const uint8_t *code) override
Definition ClientProxy1_5.cpp:36
void fileChunkReceived() const
Definition ClientProxy1_5.cpp:49
ClientProxy1_5(const std::string &name, deskflow::IStream *adoptedStream, Server *server, IEventQueue *events)
Definition ClientProxy1_5.cpp:20
~ClientProxy1_5() override=default
ClientProxy1_5 & operator=(ClientProxy1_5 &&)=delete
void dragInfoReceived() const
Definition ClientProxy1_5.cpp:54
ClientProxy1_5(ClientProxy1_5 const &)=delete
void fileChunkSending(uint8_t mark, char *data, size_t dataSize) override
Definition ClientProxy1_5.cpp:31
Event queue interface.
Definition IEventQueue.h:29
Deskflow server.
Definition Server.h:41
Bidirectional stream interface.
Definition IStream.h:22