pub fn activate_socket(port: u16)Expand description
Binds the TCP server socket to the specified port and spawns the main incoming connection listener loop.
If binding fails (e.g., because another instance is already running), an error is logged and the process exits.
Every accepted connection is assigned a unique ConnectionID and dispatched to its own dedicated worker thread.
ยงArguments
port- The network port number on which the server should listen for incoming client connections.