()
| 327 | } |
| 328 | |
| 329 | func (nm *NetworkMap) VeryConcise() string { |
| 330 | buf := new(strings.Builder) |
| 331 | nm.printConciseHeader(buf) |
| 332 | return buf.String() |
| 333 | } |
| 334 | |
| 335 | // PeerWithStableID finds and returns the peer associated to the inputted StableNodeID. |
| 336 | func (nm *NetworkMap) PeerWithStableID(pid tailcfg.StableNodeID) (_ tailcfg.NodeView, ok bool) { |
no test coverage detected