Skip to content

Commit 3ab29e2

Browse files
committed
Update PHP-Quiche
1 parent e0adc61 commit 3ab29e2

3 files changed

Lines changed: 4 additions & 5 deletions

File tree

.github/workflows/phpstan.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on: push
55
jobs:
66
phpstan:
77
name: PHPStan Analysis
8-
runs-on: ubuntu-22.04
8+
runs-on: ubuntu-24.04
99
if: "!contains(github.event.head_commit.message, '[ci skip]')"
1010

1111
steps:
@@ -20,8 +20,8 @@ jobs:
2020
token: ${{ secrets.GITHUB_TOKEN }}
2121
- name: Unpack PHP Release
2222
run: tar -xzvf PHP-8.4-Linux-x86_64-PM5.tar.gz
23-
- name: Install libffi7
24-
run: sudo apt update && sudo apt install -y --no-install-recommends libffi7
23+
- name: Install libffi8
24+
run: sudo apt update && sudo apt install -y --no-install-recommends libffi8
2525
- name: Download Composer
2626
run: curl -o composer.phar "https://getcomposer.org/composer-stable.phar"
2727
- name: Add Composer GitHub access token

PMUtils.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
namespace libproxy;
44

5-
use Exception;
65
use pocketmine\network\mcpe\convert\TypeConverter;
76
use pocketmine\network\mcpe\EntityEventBroadcaster;
87
use pocketmine\network\mcpe\PacketBroadcaster;

ProxyServer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ private function sendToMainBuffer(int $streamIdentifier, ProxyPacket $pk): void
233233

234234
public function tickProcessor(): void
235235
{
236-
$this->serverSocket->selectSockets(50);
236+
$this->serverSocket->selectSockets();
237237
}
238238

239239
private function pushSockets(): void

0 commit comments

Comments
 (0)