Internet Protocol
Unreal Engine Plugin

TCP Server Openssl

How to use TCP server class with openssl

References

#include "tcp/tcpserver.h"

How to use

Blueprint: search by GetInternetProtocolSubsystem and call CreateTCPServer function

C++: Use the code bellow

#include "tcp/tcpserver.h"

FSecurityContextOpts SecOpts = { ... };
UTCPServerSsl* net = NewObject<UTCPServerSsl>();
client->Construct(SecOpts);

Functions

This class has the same functions from TCPServer