barrier/src/lib/net/TCPSocketFactory.cpp

85 lines
2.0 KiB
C++
Raw Normal View History

2012-06-10 16:50:54 +00:00
/*
* synergy -- mouse and keyboard sharing utility
* Copyright (C) 2012 Synergy Si 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 "net/TCPSocketFactory.h"
#include "net/TCPSocket.h"
#include "net/TCPListenSocket.h"
#include "arch/Arch.h"
#include "base/Log.h"
2012-06-10 16:50:54 +00:00
//
2015-01-12 10:33:29 +00:00
// TCPSocketFactory
2012-06-10 16:50:54 +00:00
//
#if defined _WIN32
static const char s_networkSecurity[] = { "ns" };
#else
static const char s_networkSecurity[] = { "libns" };
#endif
2015-01-12 10:33:29 +00:00
TCPSocketFactory::TCPSocketFactory(IEventQueue* events, SocketMultiplexer* socketMultiplexer) :
m_events(events),
m_socketMultiplexer(socketMultiplexer)
2012-06-10 16:50:54 +00:00
{
// do nothing
}
2015-01-12 10:33:29 +00:00
TCPSocketFactory::~TCPSocketFactory()
2012-06-10 16:50:54 +00:00
{
// do nothing
}
IDataSocket*
TCPSocketFactory::create(bool secure) const
2012-06-10 16:50:54 +00:00
{
IDataSocket* socket = NULL;
if (secure) {
2015-01-26 13:23:11 +00:00
void* args[2] = {
m_events,
2015-01-26 13:23:11 +00:00
m_socketMultiplexer
};
socket = static_cast<IDataSocket*>(
ARCH->plugin().invoke(s_networkSecurity, "getSecureSocket", args));
}
else {
socket = new TCPSocket(m_events, m_socketMultiplexer);
}
return socket;
2012-06-10 16:50:54 +00:00
}
IListenSocket*
TCPSocketFactory::createListen(bool secure) const
2012-06-10 16:50:54 +00:00
{
IListenSocket* socket = NULL;
if (secure) {
2015-01-26 13:23:11 +00:00
void* args[2] = {
m_events,
2015-01-26 13:23:11 +00:00
m_socketMultiplexer
};
socket = static_cast<IListenSocket*>(
ARCH->plugin().invoke(s_networkSecurity, "getSecureListenSocket", args));
}
else {
socket = new TCPListenSocket(m_events, m_socketMultiplexer);
}
return socket;
2012-06-10 16:50:54 +00:00
}