danicoin/src/Platform/OSX/System/TcpConnection.h

57 lines
1.6 KiB
C
Raw Normal View History

2015-05-27 12:08:46 +00:00
// Copyright (c) 2012-2015, The CryptoNote developers, The Bytecoin developers
2014-09-15 10:48:45 +00:00
//
// This file is part of Bytecoin.
//
// Bytecoin is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Bytecoin 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 Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with Bytecoin. If not, see <http://www.gnu.org/licenses/>.
#pragma once
#include <cstddef>
#include <cstdint>
2015-05-27 12:08:46 +00:00
#include <utility>
2014-09-15 10:48:45 +00:00
namespace System {
class Dispatcher;
2015-05-27 12:08:46 +00:00
class Ipv4Address;
2014-09-15 10:48:45 +00:00
class TcpConnection {
public:
TcpConnection();
TcpConnection(const TcpConnection&) = delete;
TcpConnection(TcpConnection&& other);
~TcpConnection();
TcpConnection& operator=(const TcpConnection&) = delete;
TcpConnection& operator=(TcpConnection&& other);
void start();
void stop();
std::size_t read(uint8_t* data, std::size_t size);
2015-05-27 12:08:46 +00:00
std::size_t write(const uint8_t* data, std::size_t size);
std::pair<Ipv4Address, uint16_t> getPeerAddressAndPort();
2014-09-15 10:48:45 +00:00
private:
friend class TcpConnector;
friend class TcpListener;
Dispatcher* dispatcher;
int connection;
2014-09-15 10:48:45 +00:00
bool stopped;
void* readContext;
void* writeContext;
2015-05-27 12:08:46 +00:00
TcpConnection(Dispatcher& dispatcher, int socket);
2014-09-15 10:48:45 +00:00
};
}