Package org.xbill.DNS

Examples of org.xbill.DNS.DNSOutput


          (byte)0x98, (byte)0xBA, // NSCOUNT
          (byte)0x71, (byte)0x90 }; // ARCOUNT
 
  m_h = new Header(raw);
 
  DNSOutput dout = new DNSOutput();
  m_h.toWire(dout);
 
  byte[] out = dout.toByteArray();

  assertEquals(12, out.length);
  for( int i=0; i<out.length; ++i){
      assertEquals(raw[i], out[i]);
  }
View Full Code Here

TOP

Related Classes of org.xbill.DNS.DNSOutput

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.