Unreal Engine Plugin
HTTP Server Openssl
How to use HTTP server class with openssl
References
#include "http/httpserver.h"
How to use
Blueprint: search by GetInternetProtocolSubsystem and call CreateHttpServer function
C++: Use the code bellow
#include "http/httpserver.h"
FSecurityContextOpts SecOpts = { ... };
UHttpServerSsl* net = NewObject<UHttpServerSsl>();
client->Construct(SecOpts);Functions
This class has the same functions from HttpServer.