> /var/log/pandora/web_socket.log 2>&1 &'; shell_exec($cmd); // Launch gotty - telnet. $cmd = $base_cmd.' --port '.$config['gotty_telnet_port']; $cmd .= ' telnet >> /var/log/pandora/web_socket.log 2>&1 &'; shell_exec($cmd); } } // Start Web SocketProxy. $ws = new WSManager( // Bind address. $config['ws_bind_address'], // Bind port. (int) $config['ws_port'], // Connected handlers. ['gotty' => 'proxyConnected'], // Process handlers. [], // ProcessRaw handlers. ['gotty' => 'proxyProcessRaw'], // Tick handlers. [], $bufferSize, $debug ); try { $ws->run(); } catch (Exception $e) { $ws->stdout($e->getMessage()); }