Added comments

This commit is contained in:
nathan 2018-03-03 13:58:38 +01:00
parent ee87d1f792
commit 0460c35e2e

View File

@ -147,6 +147,7 @@ class DnsOutput {
byteBuf.ensureWritable(2);
byteBuf.writeShort(val);
// put the read/write back to where it was (since this was an operation to write a value at a specific position)
byteBuf.writerIndex(saved);
byteBuf.readerIndex(readSaved);
}