PocketMine-MP 5.21.1 git-2ff647079265e7c600203af4fd902b15e99d49a4
ServerInterface.php
1<?php
2
3/*
4 * This file is part of RakLib.
5 * Copyright (C) 2014-2022 PocketMine Team <https://github.com/pmmp/RakLib>
6 *
7 * RakLib is not affiliated with Jenkins Software LLC nor RakNet.
8 *
9 * RakLib is free software: you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation, either version 3 of the License, or
12 * (at your option) any later version.
13 */
14
15declare(strict_types=1);
16
17namespace raklib\server;
18
20
22
23 public function sendEncapsulated(int $sessionId, EncapsulatedPacket $packet, bool $immediate = false) : void;
24
25 public function sendRaw(string $address, int $port, string $payload) : void;
26
27 public function closeSession(int $sessionId) : void;
28
29 public function setName(string $name) : void;
30
31 public function setPortCheck(bool $value) : void;
32
33 public function setPacketsPerTickLimit(int $limit) : void;
34
35 public function blockAddress(string $address, int $timeout) : void;
36
37 public function unblockAddress(string $address) : void;
38
39 public function addRawPacketFilter(string $regex) : void;
40}