mirror of
https://github.com/debauchee/barrier.git
synced 2026-05-08 14:41:57 +08:00
58 lines
1.6 KiB
C++
58 lines
1.6 KiB
C++
/*
|
|
* synergy -- mouse and keyboard sharing utility
|
|
* Copyright (C) 2012 Nick Bolton
|
|
*
|
|
* This package is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License
|
|
* found in the file COPYING that should have accompanied this file.
|
|
*
|
|
* This package is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "CEvent.h"
|
|
#include "Ipc.h"
|
|
|
|
namespace synergy { class IStream; }
|
|
class CIpcMessage;
|
|
|
|
class CIpcClientProxy {
|
|
public:
|
|
CIpcClientProxy(synergy::IStream& stream);
|
|
virtual ~CIpcClientProxy();
|
|
|
|
//! Send a message to the client.
|
|
void send(const CIpcMessage& message);
|
|
|
|
//! Raised when the server receives a message from a client.
|
|
static CEvent::Type getMessageReceivedEvent();
|
|
|
|
//! Raised when the client disconnects from the server.
|
|
static CEvent::Type getDisconnectedEvent();
|
|
|
|
private:
|
|
void handleData(const CEvent&, void*);
|
|
void handleDisconnect(const CEvent&, void*);
|
|
void handleWriteError(const CEvent&, void*);
|
|
void parseHello();
|
|
void* parseCommand();
|
|
void disconnect();
|
|
|
|
public:
|
|
synergy::IStream& m_stream;
|
|
bool m_enableLog;
|
|
EIpcClientType m_clientType;
|
|
bool m_disconnecting;
|
|
|
|
private:
|
|
static CEvent::Type s_messageReceivedEvent;
|
|
static CEvent::Type s_disconnectedEvent;
|
|
};
|