Package org.xbill.DNS

Examples of org.xbill.DNS.SIGRecord


  m_a1 = new ARecord(m_name, DClass.IN, m_ttl,
         InetAddress.getByName("192.169.232.11"));
  m_a2 = new ARecord(m_name, DClass.IN, m_ttl+1,
         InetAddress.getByName("192.169.232.12"));

  m_s1 = new SIGRecord(m_name, DClass.IN, m_ttl, Type.A, 0xF, 0xABCDEL,
           new Date(), new Date(), 0xA, m_name, new byte[ 0 ]);
  m_s2 = new SIGRecord(m_name, DClass.IN, m_ttl, Type.A, 0xF, 0xABCDEL,
           new Date(), new Date(), 0xA, m_name2, new byte[ 0 ]);
    }
View Full Code Here

TOP

Related Classes of org.xbill.DNS.SIGRecord

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.