(peerID uuid.UUID)
| 953 | } |
| 954 | |
| 955 | func (c *Conn) GetPeerDiagnostics(peerID uuid.UUID) PeerDiagnostics { |
| 956 | d := PeerDiagnostics{DERPRegionNames: make(map[int]string)} |
| 957 | c.nodeUpdater.fillPeerDiagnostics(&d) |
| 958 | c.configMaps.fillPeerDiagnostics(&d, peerID) |
| 959 | return d |
| 960 | } |
| 961 | |
| 962 | func (c *Conn) GetKnownPeerIDs() []uuid.UUID { |
| 963 | return c.configMaps.knownPeerIDs() |
nothing calls this directly
no test coverage detected