fix websocket service exit on invalid handshake (#7448)

This commit is contained in:
frytimo
2025-08-05 14:18:38 -03:00
committed by GitHub
parent 7df7bcf131
commit a3260dde54
5 changed files with 95 additions and 12 deletions

View File

@@ -37,5 +37,5 @@ class socket_exception extends \Exception {
$this->id = $id;
return parent::__construct($message, $code, $previous);
}
public function getResourceId() { return $this->resource_id; }
public function getResourceId() { return $this->id; }
}