Package org.dhcp4java

Examples of org.dhcp4java.InetCidr.toLong()


  }
 
  @Test
  public void testToLong() throws UnknownHostException {
    InetCidr cidr = new InetCidr(InetAddress.getByName("10.11.12.0"), 24);
    assertEquals(0x180A0B0C00L, cidr.toLong());
  }
 
  @Test
  public void testFromLong() throws UnknownHostException {
    InetCidr cidr = new InetCidr(InetAddress.getByName("10.11.12.0"), 24);
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.