2023-09-04 17:13:58 -07:00
|
|
|
// Copyright (c) Tailscale Inc & AUTHORS
|
|
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
|
|
|
|
//go:build plan9
|
|
|
|
|
|
|
|
package safesocket
|
|
|
|
|
|
|
|
import (
|
2024-06-10 19:38:10 -07:00
|
|
|
"context"
|
2023-09-04 17:13:58 -07:00
|
|
|
"net"
|
|
|
|
)
|
|
|
|
|
2024-06-10 19:38:10 -07:00
|
|
|
func connect(_ context.Context, path string) (net.Conn, error) {
|
2025-03-01 15:20:52 -08:00
|
|
|
return net.Dial("tcp", "localhost:5252")
|
2023-09-04 17:13:58 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
func listen(path string) (net.Listener, error) {
|
2025-03-01 15:20:52 -08:00
|
|
|
return net.Listen("tcp", "localhost:5252")
|
2023-09-04 17:13:58 -07:00
|
|
|
}
|