Move websocket subtree and create ripple_websocket module

This commit is contained in:
Vinnie Falco
2013-06-20 17:51:12 -07:00
parent 9452f77072
commit 996ac526bf
267 changed files with 368 additions and 50388 deletions

View File

@@ -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));
}
}

View File

@@ -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 {