| 2359 | } |
| 2360 | |
| 2361 | type scriptedDialer struct { |
| 2362 | attempts chan int |
| 2363 | dialFn func(context.Context, int) (tailnet.ControlProtocolClients, error) |
| 2364 | |
| 2365 | mu sync.Mutex |
| 2366 | attemptN int |
| 2367 | } |
| 2368 | |
| 2369 | func (d *scriptedDialer) Dial(ctx context.Context, _ tailnet.ResumeTokenController) (tailnet.ControlProtocolClients, error) { |
| 2370 | d.mu.Lock() |
nothing calls this directly
no outgoing calls
no test coverage detected