Package l2p.gameserver.serverpackets

Examples of l2p.gameserver.serverpackets.SendStatus


  }

  @Override
  protected void runImpl()
  {
    getClient().close(new SendStatus());
  }
View Full Code Here


    {
      return;
    }
    else if((this._version == 65533) || (this._version == -3))
    {
      _client.close(new SendStatus());
      return;
    }
    else if(_version < Config.MIN_PROTOCOL_REVISION || _version > Config.MAX_PROTOCOL_REVISION)
    {
      _log.info("Client Protocol Revision: " + _version + ", client IP: " + _client.getIpAddr() + " not allowed. Supported protocols: from " + Config.MIN_PROTOCOL_REVISION + " to " + Config.MAX_PROTOCOL_REVISION + ". Closing connection.");
View Full Code Here

TOP

Related Classes of l2p.gameserver.serverpackets.SendStatus

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.