/** * This file is part of aion-emu <aion-emu.com>. * * aion-emu is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * aion-emu is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with aion-emu. If not, see <http://www.gnu.org/licenses/>. */ package com.aionemu.gameserver.network.aion.clientpackets; import org.apache.log4j.Logger; import com.aionemu.gameserver.network.aion.AionClientPacket; import com.aionemu.gameserver.network.aion.serverpackets.SM_PONG; /** * I have no idea wtf is this * * @author -Nemsiss- * */ public class CM_PING extends AionClientPacket { private static final Logger log = Logger.getLogger(CM_PING.class); /** * Constructs new instance of <tt>CM_PING </tt> packet * * @param opcode */ public CM_PING(int opcode) { super(opcode); } /** * {@inheritDoc} */ @Override protected void readImpl() { // empty } /** * {@inheritDoc} */ @Override protected void runImpl() { long lastMS = getConnection().getLastPingTimeMS(); if(lastMS > 0) { long pingInterval = System.currentTimeMillis() - lastMS; // PingInterval should be 3min (180000ms) if(pingInterval < 100000)// client timer cheat { String name = getConnection().getActivePlayer().getName(); log.info("[AUDIT] possible client timer cheat: " + pingInterval + " " + name); //getConnection().close(new SM_QUIT_RESPONSE(), true); } } getConnection().setLastPingTimeMS(System.currentTimeMillis()); sendPacket(new SM_PONG()); } }