Deskflow 1.26.0.443
Keyboard and mouse sharing utility
Loading...
Searching...
No Matches
ServerProxy1_7.h
Go to the documentation of this file.
1/*
2 * Deskflow -- mouse and keyboard sharing utility
3 * SPDX-FileCopyrightText: (C) 2026 Synergy App Ltd
4 * SPDX-License-Identifier: GPL-2.0-only WITH LicenseRef-OpenSSL-Exception
5 */
6
7#pragma once
8
10
13{
14public:
15 ServerProxy1_7(Client *client, deskflow::IStream *stream, IEventQueue *events);
16 ~ServerProxy1_7() override = default;
17
18protected:
19 ConnectionResult parseMessage(const uint8_t *code) override;
20
21private:
22 void secureInputNotification() const;
23};
Deskflow client.
Definition Client.h:42
Event queue interface.
Definition IEventQueue.h:29
ServerProxy1_7(Client *client, deskflow::IStream *stream, IEventQueue *events)
Definition ServerProxy1_7.cpp:16
ConnectionResult parseMessage(const uint8_t *code) override
Definition ServerProxy1_7.cpp:21
~ServerProxy1_7() override=default
ConnectionResult
Definition ServerProxy.h:58
ServerProxy(Client *client, deskflow::IStream *stream, IEventQueue *events)
Definition ServerProxy.cpp:29
Bidirectional stream interface.
Definition IStream.h:22