Files
deskflow/src/lib/net/TCPSocketFactory.h
sithlord48 879283f46f refactor: Make IArchNetwork::EAddressFamily enum class IArchNetwork::AddressFamily
confirm AddressFamily items to naming convention
2025-07-03 03:24:16 +00:00

38 lines
1.1 KiB
C++

/*
* Deskflow -- mouse and keyboard sharing utility
* SPDX-FileCopyrightText: (C) 2025 Deskflow Developers
* SPDX-FileCopyrightText: (C) 2012 - 2016 Symless Ltd.
* SPDX-FileCopyrightText: (C) 2002 Chris Schoeneman
* SPDX-License-Identifier: GPL-2.0-only WITH LicenseRef-OpenSSL-Exception
*/
#pragma once
#include "arch/IArchNetwork.h"
#include "net/ISocketFactory.h"
class IEventQueue;
class SocketMultiplexer;
//! Socket factory for TCP sockets
class TCPSocketFactory : public ISocketFactory
{
public:
TCPSocketFactory(IEventQueue *events, SocketMultiplexer *socketMultiplexer);
~TCPSocketFactory() override = default;
// ISocketFactory overrides
IDataSocket *create(
IArchNetwork::AddressFamily family = IArchNetwork::AddressFamily::INet,
SecurityLevel securityLevel = SecurityLevel::PlainText
) const override;
IListenSocket *createListen(
IArchNetwork::AddressFamily family = IArchNetwork::AddressFamily::INet,
SecurityLevel securityLevel = SecurityLevel::PlainText
) const override;
private:
IEventQueue *m_events;
SocketMultiplexer *m_socketMultiplexer;
};