danicoin/src/Platform/Linux/System/TcpConnector.h
2016-01-18 15:33:29 +00:00

33 lines
751 B
C++

// Copyright (c) 2011-2016 The Cryptonote developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#pragma once
#include <cstdint>
#include <string>
namespace System {
class Dispatcher;
class Ipv4Address;
class TcpConnection;
class TcpConnector {
public:
TcpConnector();
TcpConnector(Dispatcher& dispatcher);
TcpConnector(const TcpConnector&) = delete;
TcpConnector(TcpConnector&& other);
~TcpConnector();
TcpConnector& operator=(const TcpConnector&) = delete;
TcpConnector& operator=(TcpConnector&& other);
TcpConnection connect(const Ipv4Address& address, uint16_t port);
private:
void* context;
Dispatcher* dispatcher;
};
}