diff options
Diffstat (limited to 'www/phpvirtualbox-72/files/patch-endpoints_lib_vboxconnector.php')
-rw-r--r-- | www/phpvirtualbox-72/files/patch-endpoints_lib_vboxconnector.php | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/www/phpvirtualbox-72/files/patch-endpoints_lib_vboxconnector.php b/www/phpvirtualbox-72/files/patch-endpoints_lib_vboxconnector.php new file mode 100644 index 000000000000..3ce4bd1b67fa --- /dev/null +++ b/www/phpvirtualbox-72/files/patch-endpoints_lib_vboxconnector.php @@ -0,0 +1,21 @@ +--- endpoints/lib/vboxconnector.php.orig 2025-03-09 01:02:03 UTC ++++ endpoints/lib/vboxconnector.php +@@ -113,6 +113,8 @@ class vboxconnector { + */ + var $dsep = null; + ++ var $client = null; ++ + /** + * Obtain configuration settings and set object vars + * @param boolean $useAuthMaster use the authentication master obtained from configuration class +@@ -388,7 +390,8 @@ class vboxconnector { + + // The amount of time we will wait for events is determined by + // the amount of listeners - at least half a second +- $listenerWait = max(100,intval(500/count($this->persistentRequest['vboxEventListeners']))); ++ $listenerCount = count($this->persistentRequest['vboxEventListeners']); ++ $listenerWait = max(100,intval(500/($listenerCount > 0 ? $listenerCount : 1))); + } + + // Get events from each configured event listener |