(src, dst uuid.UUID)
| 211 | } |
| 212 | |
| 213 | func (s *tunnelStore) tunnelExists(src, dst uuid.UUID) bool { |
| 214 | _, srcOK := s.bySrc[src][dst] |
| 215 | _, dstOK := s.byDst[src][dst] |
| 216 | return srcOK || dstOK |
| 217 | } |
| 218 | |
| 219 | func (s *tunnelStore) htmlDebug() []HTMLTunnel { |
| 220 | out := make([]HTMLTunnel, 0) |
no outgoing calls