mirror of
https://github.com/vcmi/vcmi.git
synced 2024-12-14 10:12:59 +02:00
34 lines
963 B
C++
34 lines
963 B
C++
/*
|
|
* NetworkDefines.h, part of VCMI engine
|
|
*
|
|
* Authors: listed in file AUTHORS in main folder
|
|
*
|
|
* License: GNU General Public License v2.0 or later
|
|
* Full text of license available in license.txt file, in main folder
|
|
*
|
|
*/
|
|
#pragma once
|
|
|
|
#include <boost/asio.hpp>
|
|
|
|
VCMI_LIB_NAMESPACE_BEGIN
|
|
|
|
using NetworkService = boost::asio::io_service;
|
|
using NetworkSocket = boost::asio::basic_stream_socket<boost::asio::ip::tcp>;
|
|
using NetworkAcceptor = boost::asio::basic_socket_acceptor<boost::asio::ip::tcp>;
|
|
using NetworkBuffer = boost::asio::streambuf;
|
|
using NetworkTimer = boost::asio::steady_timer;
|
|
|
|
class NetworkConnection;
|
|
|
|
class DLL_LINKAGE INetworkConnectionListener
|
|
{
|
|
friend class NetworkConnection;
|
|
|
|
protected:
|
|
virtual void onDisconnected(const std::shared_ptr<NetworkConnection> & connection) = 0;
|
|
virtual void onPacketReceived(const std::shared_ptr<NetworkConnection> & connection, const std::vector<uint8_t> & message) = 0;
|
|
};
|
|
|
|
VCMI_LIB_NAMESPACE_END
|