2020-04-22 16:59:29 -04:00
|
|
|
// +build windows
|
|
|
|
|
|
|
|
package googlecompute
|
|
|
|
|
|
|
|
import (
|
2020-04-22 17:09:19 -04:00
|
|
|
"context"
|
2020-04-22 16:59:29 -04:00
|
|
|
"fmt"
|
|
|
|
)
|
|
|
|
|
|
|
|
func NewTunnelDriver() TunnelDriver {
|
|
|
|
return &TunnelDriverWindows{}
|
|
|
|
}
|
|
|
|
|
2020-04-22 17:05:38 -04:00
|
|
|
type TunnelDriverWindows struct {
|
2020-04-22 16:59:29 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
func (t *TunnelDriverWindows) StartTunnel(cancelCtx context.Context, tempScriptFileName string) error {
|
|
|
|
return fmt.Errorf("Windows support for IAP tunnel not yet supported.")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t *TunnelDriverWindows) StopTunnel() {}
|