mirror of
https://github.com/XRPLF/rippled.git
synced 2025-11-19 02:25:52 +00:00
19 lines
499 B
C++
19 lines
499 B
C++
//------------------------------------------------------------------------------
|
|
/*
|
|
Copyright (c) 2011-2013, OpenCoin, Inc.
|
|
*/
|
|
//==============================================================================
|
|
|
|
#ifndef RIPPLE_WSDOOR_RIPPLEHEADER
|
|
#define RIPPLE_WSDOOR_RIPPLEHEADER
|
|
|
|
/** Handles accepting incoming WebSocket connections. */
|
|
class WSDoor
|
|
{
|
|
public:
|
|
static WSDoor* New (std::string const& strIp, int iPort, bool bPublic,
|
|
boost::asio::ssl::context& ssl_context);
|
|
};
|
|
|
|
#endif
|