mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-06-05 11:27:07 +00:00
39 lines
924 B
PHP
39 lines
924 B
PHP
<?php
|
|
|
|
/*
|
|
|
|
-
|
|
/ \
|
|
/ \
|
|
/ POCKET \
|
|
/ MINECRAFT PHP \
|
|
|\ @shoghicp /|
|
|
|. \ / .|
|
|
| .. \ / .. |
|
|
| .. | .. |
|
|
| .. | .. |
|
|
\ | /
|
|
\ | /
|
|
\ | /
|
|
\ | /
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU Lesser General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
|
|
*/
|
|
|
|
$packetName = array(
|
|
0x02 => "ID_UNCONNECTED_PING_OPEN_CONNECTIONS",
|
|
0x05 => "ID_OPEN_CONNECTION_REQUEST_1",
|
|
0x06 => "ID_OPEN_CONNECTION_REPLY_1",
|
|
0x07 => "ID_OPEN_CONNECTION_REQUEST_2",
|
|
0x08 => "ID_OPEN_CONNECTION_REPLY_2",
|
|
0x09 => "ID_CONNECTION_REQUEST",
|
|
0x1c => "ID_UNCONNECTED_PONG",
|
|
0x1d => "ID_ADVERTISE_SYSTEM",
|
|
0x84 => "Unknown",
|
|
0xc0 => "Unknown",
|
|
); |