Package com.l2jfrozen.loginserver.LoginController

Examples of com.l2jfrozen.loginserver.LoginController.AuthLoginResult


      _log.warning("Socket is not connected: " + client.getAccount());
      client.close(LoginFailReason.REASON_SYSTEM_ERROR);
      return;
    }
    String addhost = address.getHostAddress();
    AuthLoginResult result = lc.tryAuthLogin(_user, _password, getClient());

    switch(result)
    {
      case AUTH_SUCCESS:
        client.setAccount(_user);
View Full Code Here

TOP

Related Classes of com.l2jfrozen.loginserver.LoginController.AuthLoginResult

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.