Package com.l2jfrozen.loginserver

Examples of com.l2jfrozen.loginserver.SessionKey


    int playKey1 = readD();
    int playKey2 = readD();
    int loginKey1 = readD();
    int loginKey2 = readD();

    _sessionKey = new SessionKey(loginKey1, loginKey2, playKey1, playKey2);
  }
View Full Code Here


  }
 
  @Override
  public void run()
  {
    SessionKey sk = getClient().getSessionKey();

    // if we didnt showed the license we cant check these values
    if(!Config.SHOW_LICENCE || sk.checkLoginPair(_skey1, _skey2))
    {
      if(LoginController.getInstance().isLoginPossible(getClient(), _serverId))
      {
        getClient().setJoinedGS(true);
        getClient().sendPacket(new PlayOk(sk));
View Full Code Here

TOP

Related Classes of com.l2jfrozen.loginserver.SessionKey

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.