From cab426ffa3feaf1a36b35342b68adce83456c00d Mon Sep 17 00:00:00 2001 From: Kahrl Date: Thu, 25 Aug 2011 21:32:48 +0200 Subject: [PATCH] dissector branch: fix for doc/protocol.txt: CONTROLTYPE_DISCO is 3 --- doc/protocol.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/protocol.txt b/doc/protocol.txt index da2d3394f..82dca59bf 100644 --- a/doc/protocol.txt +++ b/doc/protocol.txt @@ -42,7 +42,7 @@ Initialization: u8 channel = 0 # Control packet header u8 type = TYPE_CONTROL = 0 - u8 controltype = CONTROLTYPE_DISCO = 2 + u8 controltype = CONTROLTYPE_DISCO = 3 - Here's a quick untested connect-disconnect done in PHP: # host: ip of server (use gethostbyname(hostname) to get from a dns name) @@ -61,7 +61,7 @@ function check_if_minetestserver_up($host, $port) $peer_id = substr($buf, 9, 2); # Disconnect - $buf = "\x4f\x45\x74\x03".$peer_id."\x00\x00\x02"; + $buf = "\x4f\x45\x74\x03".$peer_id."\x00\x00\x03"; socket_sendto($socket, $buf, strlen($buf), 0, $host, $port); socket_close($socket); -- 2.25.1