コード例 #1
0
ファイル: KEYRecord.java プロジェクト: lemmy/dnsjava
  void rrToWire(DataByteOutputStream out, Compression c) throws IOException {
    if (key == null && (flags & (FLAG_NOKEY)) != (FLAG_NOKEY)) return;

    out.writeShort(flags);
    out.writeByte(proto);
    out.writeByte(alg);
    if (key != null) out.write(key);
  }
コード例 #2
0
ファイル: UNKRecord.java プロジェクト: lemmy/dnsjava
 void rrToWire(DataByteOutputStream out, Compression c) throws IOException {
   if (data != null) out.write(data);
 }