mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-03-07 06:09:42 +00:00
fix typo
This commit is contained in:
17
WebSocks.cpp
17
WebSocks.cpp
@@ -1,5 +1,6 @@
|
|||||||
#include "WebSocks.h"
|
#include "WebSocks.h"
|
||||||
#include "Log.h"
|
#include "Log.h"
|
||||||
|
#include <string>
|
||||||
|
|
||||||
#ifdef WITH_EVENTS
|
#ifdef WITH_EVENTS
|
||||||
#include "ClientContext.h"
|
#include "ClientContext.h"
|
||||||
@@ -382,14 +383,24 @@ namespace client
|
|||||||
class WebSocksImpl
|
class WebSocksImpl
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
WebSocks(const std::string & addr, int port) {}
|
WebSocksImpl(const std::string & addr, int port)
|
||||||
~WebSocks(){}
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
~WebSocksImpl()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
void Start()
|
void Start()
|
||||||
{
|
{
|
||||||
LogPrint(eLogInfo, "WebSockets not enabled on compile time");
|
LogPrint(eLogInfo, "WebSockets not enabled on compile time");
|
||||||
}
|
}
|
||||||
|
|
||||||
void Stop() {}
|
void Stop()
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user