Skip to content

Commit

Permalink
p2p: handle ip4/6 quic addresses
Browse files Browse the repository at this point in the history
  • Loading branch information
guillaumemichel committed Aug 14, 2024
1 parent f3ab1b3 commit 299eff3
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions p2p/enode/node.go
Original file line number Diff line number Diff line change
Expand Up @@ -202,12 +202,16 @@ func (n *Node) TCPEndpoint() (netip.AddrPort, bool) {

// QUICEndpoint returns the announced QUIC endpoint.
func (n *Node) QUICEndpoint() (netip.AddrPort, bool) {
var quic enr.QUIC
n.Load(&quic)
var quic uint16
if n.ip.Is4() || n.ip.Is4In6() {
n.Load((*enr.QUIC)(&quic))
} else if n.ip.Is6() {
n.Load((*enr.QUIC6)(&quic))
}
if !n.ip.IsValid() || n.ip.IsUnspecified() || quic == 0 {
return netip.AddrPort{}, false
}
return netip.AddrPortFrom(n.ip, uint16(quic)), true
return netip.AddrPortFrom(n.ip, quic), true
}

// Pubkey returns the secp256k1 public key of the node, if present.
Expand Down

0 comments on commit 299eff3

Please sign in to comment.