Unreal Engine Plugin
Websocket Server Openssl
How to use Websocket server class with openssl
References
#include "websocket/wsserver.h"
How to use
Blueprint: search by GetInternetProtocolSubsystem
and call CreateWebsocketServerSsl
function
C++: Use the code bellow
#include "websocket/wsserver.h"
FSecurityContextOpts SecOpts = { ... };
UWSServerSsl* WSServerSsl = NewObject<UWSServerSsl>();
client->Construct(SecOpts);
Functions
This class has the same functions from WSServer
.