barrier/src/lib/server/ClientProxy.cpp

62 lines
1.5 KiB
C++
Raw Normal View History

2012-06-10 16:50:54 +00:00
/*
* synergy -- mouse and keyboard sharing utility
* Copyright (C) 2012 Bolton Software Ltd.
* Copyright (C) 2002 Chris Schoeneman
2012-06-10 16:50:54 +00:00
*
* 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/>.
*/
#include "server/ClientProxy.h"
#include "synergy/ProtocolUtil.h"
#include "io/IStream.h"
#include "base/Log.h"
#include "base/EventQueue.h"
2012-06-10 16:50:54 +00:00
//
2014-11-11 13:51:47 +00:00
// ClientProxy
2012-06-10 16:50:54 +00:00
//
2014-11-11 13:51:47 +00:00
ClientProxy::ClientProxy(const String& name, synergy::IStream* stream) :
BaseClientProxy(name),
2012-06-10 16:50:54 +00:00
m_stream(stream)
{
}
2014-11-11 13:51:47 +00:00
ClientProxy::~ClientProxy()
2012-06-10 16:50:54 +00:00
{
delete m_stream;
}
void
2014-11-11 13:51:47 +00:00
ClientProxy::close(const char* msg)
2012-06-10 16:50:54 +00:00
{
LOG((CLOG_DEBUG1 "send close \"%s\" to \"%s\"", msg, getName().c_str()));
2014-11-11 13:51:47 +00:00
ProtocolUtil::writef(getStream(), msg);
2012-06-10 16:50:54 +00:00
// force the close to be sent before we return
getStream()->flush();
}
synergy::IStream*
2014-11-11 13:51:47 +00:00
ClientProxy::getStream() const
2012-06-10 16:50:54 +00:00
{
return m_stream;
}
void*
2014-11-11 13:51:47 +00:00
ClientProxy::getEventTarget() const
2012-06-10 16:50:54 +00:00
{
2014-11-11 13:51:47 +00:00
return static_cast<IScreen*>(const_cast<ClientProxy*>(this));
2012-06-10 16:50:54 +00:00
}