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