| 1281 | func (*fakeTailnetConn) SetTunnelDestination(uuid.UUID) {} |
| 1282 | |
| 1283 | type pipeDialer struct { |
| 1284 | ctx context.Context |
| 1285 | logger slog.Logger |
| 1286 | t testing.TB |
| 1287 | svc *tailnet.ClientService |
| 1288 | streamID tailnet.StreamID |
| 1289 | } |
| 1290 | |
| 1291 | func (p *pipeDialer) Dial(_ context.Context, _ tailnet.ResumeTokenController) (tailnet.ControlProtocolClients, error) { |
| 1292 | s, c := net.Pipe() |
nothing calls this directly
no outgoing calls
no test coverage detected