mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
unmap IPv4-mapped IPv6 addresses (#4309)
This commit is contained in:
parent
71f5ae5ecb
commit
a70419b49f
2 changed files with 2 additions and 2 deletions
|
@ -221,7 +221,7 @@ func (c *oobConn) ReadPacket() (receivedPacket, error) {
|
|||
// unsigned int ipi6_ifindex; /* send/recv interface index */
|
||||
// };
|
||||
if len(body) == 20 {
|
||||
p.info.addr = netip.AddrFrom16(*(*[16]byte)(body[:16]))
|
||||
p.info.addr = netip.AddrFrom16(*(*[16]byte)(body[:16])).Unmap()
|
||||
p.info.ifIndex = binary.LittleEndian.Uint32(body[16:])
|
||||
} else {
|
||||
invalidCmsgOnceV6.Do(func() {
|
||||
|
|
|
@ -235,7 +235,7 @@ var _ = Describe("OOB Conn Test", func() {
|
|||
Eventually(packetChan).Should(Receive(&p))
|
||||
Expect(utils.IsIPv4(p.remoteAddr.(*net.UDPAddr).IP)).To(BeTrue())
|
||||
Expect(p.info).To(Not(BeNil()))
|
||||
Expect(p.info.addr.Is4In6() || p.info.addr.Is4()).To(BeTrue())
|
||||
Expect(p.info.addr.Is4()).To(BeTrue())
|
||||
ip := p.info.addr.As4()
|
||||
Expect(net.IP(ip[:])).To(Equal(ip4.To4()))
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue