mirror of
https://github.com/XRPLF/rippled.git
synced 2025-11-20 11:05:54 +00:00
* Rename unity files * Move some modules to new subdirectories * Remove obsolete Visual Studio project files * Remove obsolete coding style and TODO list
57 lines
2.5 KiB
C++
57 lines
2.5 KiB
C++
//------------------------------------------------------------------------------
|
|
/*
|
|
This file is part of Beast: https://github.com/vinniefalco/Beast
|
|
Copyright 2013, Vinnie Falco <vinnie.falco@gmail.com>
|
|
|
|
Permission to use, copy, modify, and/or distribute this software for any
|
|
purpose with or without fee is hereby granted, provided that the above
|
|
copyright notice and this permission notice appear in all copies.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
ANY SPECIAL , DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
*/
|
|
//==============================================================================
|
|
|
|
#if BEAST_INCLUDE_BEASTCONFIG
|
|
#include <BeastConfig.h>
|
|
#endif
|
|
|
|
#include <beast/module/asio/system/OpenSSLIncludes.h>
|
|
|
|
#include <beast/module/asio/asio.h>
|
|
|
|
#include <beast/http/impl/joyent_parser.h>
|
|
|
|
#include <beast/module/asio/basics/PeerRole.cpp>
|
|
#include <beast/module/asio/basics/SSLContext.cpp>
|
|
|
|
#include <beast/module/asio/protocol/HandshakeDetectLogicPROXY.cpp>
|
|
|
|
#include <beast/module/asio/http/HTTPParserImpl.h>
|
|
#include <beast/module/asio/http/HTTPClientType.cpp>
|
|
#include <beast/module/asio/http/HTTPField.cpp>
|
|
#include <beast/module/asio/http/HTTPHeaders.cpp>
|
|
#include <beast/module/asio/http/HTTPMessage.cpp>
|
|
#include <beast/module/asio/http/HTTPRequest.cpp>
|
|
#include <beast/module/asio/http/HTTPResponse.cpp>
|
|
#include <beast/module/asio/http/HTTPVersion.cpp>
|
|
|
|
#include <beast/module/asio/tests/PeerTest.cpp>
|
|
#include <beast/module/asio/tests/TestPeerBasics.cpp>
|
|
#include <beast/module/asio/tests/TestPeerLogic.cpp>
|
|
#include <beast/module/asio/tests/TestPeerLogicProxyClient.cpp>
|
|
#include <beast/module/asio/tests/TestPeerLogicSyncServer.cpp>
|
|
#include <beast/module/asio/tests/TestPeerLogicSyncClient.cpp>
|
|
#include <beast/module/asio/tests/TestPeerLogicAsyncServer.cpp>
|
|
#include <beast/module/asio/tests/TestPeerLogicAsyncClient.cpp>
|
|
#include <beast/module/asio/tests/TestPeerUnitTests.cpp>
|
|
|
|
#include <beast/module/asio/http/HTTPParser.cpp>
|
|
#include <beast/module/asio/http/HTTPRequestParser.cpp>
|
|
#include <beast/module/asio/http/HTTPResponseParser.cpp>
|