mirror of
https://github.com/netbirdio/netbird.git
synced 2024-12-14 19:00:50 +01:00
4ea55bfe3c
- Eliminate cached offeranswer arguments - Fix exponent reset in conn reconnect loop - Fix on disconnected callback for permanent server - Add peer relay status for status details command
14 lines
167 B
Go
14 lines
167 B
Go
package client
|
|
|
|
type RelayAddr struct {
|
|
addr string
|
|
}
|
|
|
|
func (a RelayAddr) Network() string {
|
|
return "relay"
|
|
}
|
|
|
|
func (a RelayAddr) String() string {
|
|
return a.addr
|
|
}
|