EntropyEngine::Networking::LocalServerConfig
EntropyEngine::Networking::LocalServerConfig
Section titled “EntropyEngine::Networking::LocalServerConfig”Local server configuration (platform-agnostic).
#include <LocalServer.h>
Public Attributes
Section titled “Public Attributes”| Name | |
|---|---|
| bool | unlinkOnStart if true, unlink socket path before bind (Unix) |
| size_t | pipeOutBufferSize Named pipe output buffer size (Windows). |
| size_t | pipeInBufferSize Named pipe input buffer size (Windows). |
| int | chmodMode if >= 0, chmod the socket path to this mode (Unix) |
| int | backlog listen() backlog |
| int | acceptPollIntervalMs poll interval or wait timeout in accept loop |
Public Attributes Documentation
Section titled “Public Attributes Documentation”variable unlinkOnStart
Section titled “variable unlinkOnStart”bool unlinkOnStart = true;if true, unlink socket path before bind (Unix)
variable pipeOutBufferSize
Section titled “variable pipeOutBufferSize”size_t pipeOutBufferSize = 1 * 1024 * 1024;Named pipe output buffer size (Windows).
variable pipeInBufferSize
Section titled “variable pipeInBufferSize”size_t pipeInBufferSize = 1 * 1024 * 1024;Named pipe input buffer size (Windows).
variable chmodMode
Section titled “variable chmodMode”int chmodMode = -1;if >= 0, chmod the socket path to this mode (Unix)
variable backlog
Section titled “variable backlog”int backlog = 128;listen() backlog
variable acceptPollIntervalMs
Section titled “variable acceptPollIntervalMs”int acceptPollIntervalMs = 500;poll interval or wait timeout in accept loop
Updated on 2026-01-26 at 17:14:35 -0500