Unreal Engine Plugin
TCP Client Openssl
How to use TCP client class with openssl
References
#include "tcp/client.h"
How to use
Blueprint: search by GetInternetProtocolSubsystem
and call CreateTCPClientSsl
function
C++: Use the code bellow
#include "tcp/client.h"
FSecurityContextOpts SecOpts = { ... };
UTCPClientSsl* client = NewObject<UTCPClientSsl>();
client->Construct(SecOpts);
Functions
This class has the same functions from TCPClient