BridgeSandboxTunnel copies bytes bidirectionally between two read/write.
func BridgeSandboxTunnel(
ctx context.Context,
a io.ReadWriteCloser,
b io.ReadWriteCloser
)BridgeSandboxTunnel copies bytes bidirectionally between two read/write closers until either side closes or ctx is cancelled. Both sides are closed before it returns.
| Name | Type | Description |
|---|---|---|
ctx* | context.Context | |
a* | io.ReadWriteCloser | |
b* | io.ReadWriteCloser |