public void run()
{
this.logInfo("Query running on " + this.serverHostname + ":" + this.queryPort);
this.lastAuthCheckTime = MinecraftServer.getSystemTimeMillis();
this.incomingPacket = new DatagramPacket(this.buffer, this.buffer.length);
try
{
while (this.running)
{
try
{
this.querySocket.receive(this.incomingPacket);
this.cleanQueryClientsMap();
this.parseIncomingPacket(this.incomingPacket);
}
catch (SocketTimeoutException sockettimeoutexception)
{
this.cleanQueryClientsMap();
}
catch (PortUnreachableException portunreachableexception)
{
;
}
catch (IOException ioexception)
{
this.stopWithException(ioexception);
}
}
}
finally
{
this.closeAllSockets();
}
}
RConThreadQuery.java 文件源码
java
阅读 19
收藏 0
点赞 0
评论 0
项目:Cauldron
作者:
评论列表
文章目录