PocketMine-MP/pstruct/RakNet.php
Shoghi Cervantes Pueyo 123f988017 Some packets
2012-10-19 05:07:20 +02:00

86 lines
1013 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.
*/
$pstruct = array(
0x02 => array(
8,
"magic",
),
0x05 => array(
"magic",
"byte",
"special1",
),
0x06 => array(
"magic",
8,
"byte",
"short",
),
0x07 => array(
"magic",
5,
"short",
"short",
8,
),
0x08 => array(
"magic",
8,
5,
),
0x09 => array(
8,
8,
"byte",
),
0x10 => array(
),
0x1c => array(
8,
8,
"magic",
"string",
),
0x1d => array(
8,
8,
"magic",
"string",
),
);