Updated RakLib version, Query works again

This commit is contained in:
Shoghi Cervantes
2014-07-06 01:18:28 +02:00
parent 1b6fcf7942
commit 892119f791
5 changed files with 71 additions and 76 deletions

View File

@ -153,6 +153,14 @@ class RakLibInterface implements ServerInstance, SourceInterface{
}
}
public function handleRaw($address, $port, $payload){
$this->server->handlePacket($address, $port, $payload);
}
public function putRaw($address, $port, $payload){
$this->interface->sendRaw($address, $port, $payload);
}
public function notifyACK($identifier, $identifierACK){
if(isset($this->players[$identifier])){
$this->players[$identifier]->handleACK($identifierACK);