Examples of InetRange


Examples of net.sourceforge.jsocks.socks.InetRange

//////////////////
  private int getRangeIndex(InetAddress ip){
     int index = 0;
     Iterator iterator = hosts.iterator();
     while(iterator.hasNext()){
       InetRange ir = (InetRange) iterator.next();
       if(ir.contains(ip)) return index;
       index++;
     }
     return -1; //Not found
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.