mirror of
https://github.com/vcmi/vcmi.git
synced 2024-11-26 08:41:13 +02:00
25 lines
602 B
C++
25 lines
602 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>
|
|
|
|
#include "NetworkInterface.h"
|
|
|
|
VCMI_LIB_NAMESPACE_BEGIN
|
|
|
|
using NetworkContext = boost::asio::io_service;
|
|
using NetworkSocket = boost::asio::ip::tcp::socket;
|
|
using NetworkAcceptor = boost::asio::ip::tcp::acceptor;
|
|
using NetworkBuffer = boost::asio::streambuf;
|
|
using NetworkTimer = boost::asio::steady_timer;
|
|
|
|
VCMI_LIB_NAMESPACE_END
|