Unnamed repository; edit this file 'description' to name the repository.
Auto merge of #158457 - devnexen:xous_ipv6_fix, r=joboet
std: fix xous dns ipv6 parsing off-by-one
the ipv6 arm read the 16-byte address from offset+1 instead of offset, unlike the ipv4 arm. this mis-parsed every ipv6 result and let the slice reach offset+17 while the bounds check only guards offset+16, so a malformed dns response could index past the 4096-byte buffer and panic.