org.xbill.DNS.NSIDOption Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.apache.servicemix.bundles.dnsjava
Show all versions of org.apache.servicemix.bundles.dnsjava
This OSGi bundle wraps ${pkgArtifactId} ${pkgVersion} jar file.
// Copyright (c) 1999-2004 Brian Wellington ([email protected])
package org.xbill.DNS;
/**
* The Name Server Identifier Option
*
* @see OPTRecord
* @author Brian Wellington
* @see RFC 5001: DNS Name Server Identifier (NSID)
* Option
*/
public class NSIDOption extends GenericEDNSOption {
NSIDOption() {
super(EDNSOption.Code.NSID);
}
/**
* Construct an NSID option.
*
* @param data The contents of the option.
*/
public NSIDOption(byte[] data) {
super(EDNSOption.Code.NSID, data);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy