2017-07-20 08:01:46 -07:00
|
|
|
//
|
2019-02-21 07:00:31 -08:00
|
|
|
// Copyright (c) 2016-2019 Vinnie Falco (vinnie dot falco at gmail dot com)
|
2017-07-20 08:01:46 -07:00
|
|
|
//
|
|
|
|
|
// Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
|
|
|
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
|
//
|
2017-07-20 13:40:34 -07:00
|
|
|
// Official repository: https://github.com/boostorg/beast
|
|
|
|
|
//
|
2017-07-20 08:01:46 -07:00
|
|
|
|
2017-06-26 17:20:42 -07:00
|
|
|
#if defined(__GNUC__) && (__GNUC__ >= 7)
|
|
|
|
|
#pragma GCC diagnostic push
|
|
|
|
|
#pragma GCC diagnostic ignored "-Wimplicit-fallthrough"
|
|
|
|
|
#endif
|
|
|
|
|
|
2017-07-07 17:47:24 -07:00
|
|
|
#include <boost/config.hpp>
|
|
|
|
|
|
|
|
|
|
#ifdef BOOST_MSVC
|
2017-07-20 08:01:46 -07:00
|
|
|
# pragma warning (push)
|
|
|
|
|
# pragma warning (disable: 4127) // conditional expression is constant
|
|
|
|
|
# pragma warning (disable: 4244) // integer conversion, possible loss of data
|
|
|
|
|
#endif
|
2017-06-26 17:20:42 -07:00
|
|
|
|
2017-07-20 08:01:46 -07:00
|
|
|
#include "nodejs-parser/http_parser.c"
|
2017-06-26 17:20:42 -07:00
|
|
|
|
2017-07-07 17:47:24 -07:00
|
|
|
#ifdef BOOST_MSVC
|
2017-07-20 08:01:46 -07:00
|
|
|
# pragma warning (pop)
|
|
|
|
|
#endif
|
|
|
|
|
|
2017-06-26 17:20:42 -07:00
|
|
|
#if defined(__GNUC__) && (__GNUC__ >= 7)
|
|
|
|
|
#pragma GCC diagnostic pop
|
|
|
|
|
#endif
|