Skip to content

EntropyEngine::Networking::RemoteServerConfig

EntropyEngine::Networking::RemoteServerConfig

Section titled “EntropyEngine::Networking::RemoteServerConfig”

Configuration for remote server connections. More…

#include <RemoteServer.h>

Name
WebRTCServerConfigwebrtcConfig
std::stringtlsKeyPath
std::stringtlsCertPath
uint16_tport
boolenableTls
intbacklog
intacceptPollIntervalMs
struct EntropyEngine::Networking::RemoteServerConfig;

Configuration for remote server connections.

This configuration is protocol-agnostic with protocol-specific settings nested within. This allows future protocols (QUIC, etc.) to be added without changing the base config structure.

WebRTCServerConfig webrtcConfig;
std::string tlsKeyPath;
std::string tlsCertPath;
uint16_t port = 8080;
bool enableTls = false;
int backlog = 128;
int acceptPollIntervalMs = 100;

Updated on 2026-01-26 at 17:14:35 -0500