
com.kendamasoft.dns.records.CAARecord Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dns-client Show documentation
Show all versions of dns-client Show documentation
Compact DNS client library intended primary for network utilities and testing applications
package com.kendamasoft.dns.records;
import com.kendamasoft.dns.Buffer;
import com.kendamasoft.dns.Record;
/**
* Certification Authority Authorization
*/
public class CAARecord extends Record {
byte flag;
String tag;
String data;
@Override
public void parseData(short dataLength, Buffer buffer) {
flag = buffer.readByte();
StringBuilder sb = new StringBuilder();
byte tagLength = buffer.readByte();
dataLength -= 2;
for(int i=0; i
© 2015 - 2025 Weber Informatics LLC | Privacy Policy