mirror of
https://github.com/XRPLF/rippled.git
synced 2026-08-23 15:20:54 +00:00
Move websocket subtree and create ripple_websocket module
This commit is contained in:
@@ -37,10 +37,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
#include "sha1.h"
|
||||
|
||||
using websocketpp::SHA1;
|
||||
namespace websocketpp
|
||||
{
|
||||
|
||||
/*
|
||||
* SHA1
|
||||
@@ -589,3 +587,5 @@ unsigned SHA1::CircularShift(int bits, unsigned word)
|
||||
{
|
||||
return ((word << bits) & 0xFFFFFFFF) | ((word & 0xFFFFFFFF) >> (32-bits));
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -28,15 +28,7 @@
|
||||
#ifndef WEBSOCKETPP_SOCKET_AUTOTLS_HPP
|
||||
#define WEBSOCKETPP_SOCKET_AUTOTLS_HPP
|
||||
|
||||
#include "../common.hpp"
|
||||
#include "socket_base.hpp"
|
||||
#include "../../../ripple/AutoSocket.h"
|
||||
|
||||
#include <boost/asio.hpp>
|
||||
#include <boost/asio/ssl.hpp>
|
||||
#include <boost/bind.hpp>
|
||||
|
||||
#include <iostream>
|
||||
// Note that AutoSocket.h must be included before this file
|
||||
|
||||
namespace websocketpp {
|
||||
namespace socket {
|
||||
|
||||
Reference in New Issue
Block a user