danicoin/src/Platform/Windows/System/TcpListener.h

34 lines
759 B
C
Raw Normal View History

// 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.
2014-09-15 10:48:45 +00:00
#pragma once
#include <cstdint>
#include <string>
namespace System {
class Dispatcher;
2015-05-27 12:08:46 +00:00
class Ipv4Address;
2014-09-15 10:48:45 +00:00
class TcpConnection;
class TcpListener {
public:
TcpListener();
2015-05-27 12:08:46 +00:00
TcpListener(Dispatcher& dispatcher, const Ipv4Address& address, uint16_t port);
2014-09-15 10:48:45 +00:00
TcpListener(const TcpListener&) = delete;
TcpListener(TcpListener&& other);
~TcpListener();
TcpListener& operator=(const TcpListener&) = delete;
TcpListener& operator=(TcpListener&& other);
TcpConnection accept();
private:
Dispatcher* dispatcher;
2015-07-30 15:22:07 +00:00
size_t listener;
void* context;
2014-09-15 10:48:45 +00:00
};
}