diff --git a/Server/Connection.h b/Server/Connection.h index cf59cddd6..4624c9fd3 100644 --- a/Server/Connection.h +++ b/Server/Connection.h @@ -32,6 +32,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. #include "Http/Reply.h" #include "Http/Request.h" +#include #include #include #include @@ -81,7 +82,7 @@ class Connection : public std::enable_shared_from_this boost::asio::io_service::strand strand; boost::asio::ip::tcp::socket TCP_socket; RequestHandler &request_handler; - std::array incoming_data_buffer; + boost::array incoming_data_buffer; Request request; Reply reply; };