A DNS response carries answers as typed records. This lesson decodes an A answer down to its exact address bytes.
highlighted = computed this step
Why an answer is a record
A DNS answer is a typed record, not just a loose address. The strip shows the type, class, data length, and address bytes.
RDLENGTH=4
Type, class, and length
The answer type is 1 for A, the class is 1 for IN, and RDLENGTH is 4.
type=1,class=1,len=4
The address bytes
The RDATA bytes are 0x5db8d822, which decode to 93.184.216.34.
0x5db8d822↔93.184.216.34
Decode it again
The same answer shape can carry 8.8.8.8 with the same type, class, and data length.
0x08080808↔8.8.8.8
Summary
This is a single answer record, carrying one exact address value. Message structure and exact bytes only; resolution timing, caching, and UDP/TCP transport are not modeled here.