Moved the RAKNET_MAGIC constant

This commit is contained in:
Shoghi Cervantes Pueyo 2013-03-21 17:03:13 +01:00
parent 6e4141f140
commit 2e0d49a2ba
5 changed files with 8 additions and 8 deletions

View File

@ -562,7 +562,7 @@ class Player{
break;
}
$this->send(0x08, array(
MAGIC,
RAKNET_MAGIC,
$this->server->serverID,
$this->port,
$data[3],

View File

@ -529,7 +529,7 @@ class PocketMinecraftServer{
$this->send(0x1c, array(
$data[0],
$this->serverID,
MAGIC,
RAKNET_MAGIC,
$this->serverType,
), false, $packet["ip"], $packet["port"]);
break;
@ -538,7 +538,7 @@ class PocketMinecraftServer{
$this->send(0x1c, array(
$data[0],
$this->serverID,
MAGIC,
RAKNET_MAGIC,
$this->serverType. $this->name . " [You're banned]",
), false, $packet["ip"], $packet["port"]);
break;
@ -555,7 +555,7 @@ class PocketMinecraftServer{
$this->send(0x1c, array(
$data[0],
$this->serverID,
MAGIC,
RAKNET_MAGIC,
$this->serverType. $this->name . " [".($this->gamemode === CREATIVE ? "C":($this->gamemode === ADVENTURE ? "A":"S")).($this->whitelist !== false ? "W":"")." ".count($this->clients)."/".$this->maxClients."] ".$txt,
), false, $packet["ip"], $packet["port"]);
$this->custom["times_".$CID] = ($this->custom["times_".$CID] + 1) % strlen($this->description);
@ -585,12 +585,12 @@ class PocketMinecraftServer{
console("[DEBUG] Incorrect structure #$version from ".$packet["ip"].":".$packet["port"], true, true, 2);
$this->send(0x1a, array(
CURRENT_STRUCTURE,
MAGIC,
RAKNET_MAGIC,
$this->serverID,
), false, $packet["ip"], $packet["port"]);
}else{
$this->send(0x06, array(
MAGIC,
RAKNET_MAGIC,
$this->serverID,
0,
strlen($packet["raw"]),

View File

@ -41,7 +41,6 @@ set_include_path(get_include_path() . PATH_SEPARATOR . FILE_PATH);
ini_set("memory_limit", "256M"); //Default
define("LOG", true);
define("MAGIC", "\x00\xff\xff\x00\xfe\xfe\xfe\xfe\xfd\xfd\xfd\xfd\x12\x34\x56\x78");
define("TEST_MD5", "ffe889db5932db1e3371d48773590e59");
define("MAJOR_VERSION", "Alpha_1.3dev");
define("CURRENT_STRUCTURE", 5);

View File

@ -25,6 +25,7 @@ the Free Software Foundation, either version 3 of the License, or
*/
define("RAKNET_MAGIC", "\x00\xff\xff\x00\xfe\xfe\xfe\xfe\xfd\xfd\xfd\xfd\x12\x34\x56\x78");
define("MC_KEEP_ALIVE", 0x00);

View File

@ -93,7 +93,7 @@ class Packet{
}
break;
case "magic":
$this->addRaw(MAGIC);
$this->addRaw(RAKNET_MAGIC);
break;
case "float":
$this->addRaw(Utils::writeFloat($this->data[$field]));