EntropyEngine::Networking::RemoteServerConfig
EntropyEngine::Networking::RemoteServerConfig
Section titled “EntropyEngine::Networking::RemoteServerConfig”Configuration for remote server connections. More…
#include <RemoteServer.h>
Public Attributes
Section titled “Public Attributes”| Name | |
|---|---|
| WebRTCServerConfig | webrtcConfig |
| std::string | tlsKeyPath |
| std::string | tlsCertPath |
| uint16_t | port |
| bool | enableTls |
| int | backlog |
| int | acceptPollIntervalMs |
Detailed Description
Section titled “Detailed Description”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.
Public Attributes Documentation
Section titled “Public Attributes Documentation”variable webrtcConfig
Section titled “variable webrtcConfig”WebRTCServerConfig webrtcConfig;variable tlsKeyPath
Section titled “variable tlsKeyPath”std::string tlsKeyPath;variable tlsCertPath
Section titled “variable tlsCertPath”std::string tlsCertPath;variable port
Section titled “variable port”uint16_t port = 8080;variable enableTls
Section titled “variable enableTls”bool enableTls = false;variable backlog
Section titled “variable backlog”int backlog = 128;variable acceptPollIntervalMs
Section titled “variable acceptPollIntervalMs”int acceptPollIntervalMs = 100;Updated on 2026-01-26 at 17:14:35 -0500