Package l2p.gameserver.loginservercon

Examples of l2p.gameserver.loginservercon.AdvIP


      {
        NetMask = getProperty(ipsSettings, "NetMask" + (i + 1));
        ip = getProperty(ipsSettings, "IPAdress" + (i + 1));
        for(String mask : NetMask.split(","))
        {
          AdvIP advip = new AdvIP();
          advip.ipadress = ip;
          advip.ipmask = mask.split("/")[0];
          advip.bitmask = mask.split("/")[1];
          GAMEIPS.add(advip);
        }
View Full Code Here


    byte[] hexId = readB(hexIdLenth);
    int advIpsSize = readD();
    FastList<AdvIP> advIpList = FastList.newInstance();
    for(int i = 0; i < advIpsSize; i++)
    {
      AdvIP ip = new AdvIP();
      ip.ipadress = readS();
      ip.ipmask = readS();
      ip.bitmask = readS();
      advIpList.add(ip);
    }
View Full Code Here

TOP

Related Classes of l2p.gameserver.loginservercon.AdvIP

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.