vppn/node/globalfuncs.go
2025-01-22 14:09:43 +01:00

9 lines
137 B
Go

package node
func getRelayRoute() *peerRoute {
if ip := relayIP.Load(); ip != nil {
return routingTable[*ip].Load()
}
return nil
}