From b7f0b073bb7585ea932a5783ff4ea88843a46b1b Mon Sep 17 00:00:00 2001 From: Valentin Anger Date: Sun, 24 May 2020 15:43:40 +0200 Subject: Add unstable checks for unix transport (#5818) Also remove the unix example from the stable documentation to stay in line with the `Deno.listen` one --- cli/ops/net.rs | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'cli/ops/net.rs') diff --git a/cli/ops/net.rs b/cli/ops/net.rs index 59707e291..ae5bcb9bb 100644 --- a/cli/ops/net.rs +++ b/cli/ops/net.rs @@ -302,6 +302,7 @@ fn op_connect( transport_args: ArgsEnum::Unix(args), } if transport == "unix" => { let address_path = net_unix::Path::new(&args.path); + state.check_unstable("Deno.connect"); state.check_read(&address_path)?; let op = async move { let path = args.path; @@ -524,6 +525,9 @@ fn op_listen( transport, transport_args: ArgsEnum::Unix(args), } if transport == "unix" || transport == "unixpacket" => { + if transport == "unix" { + state.check_unstable("Deno.listen"); + } if transport == "unixpacket" { state.check_unstable("Deno.listenDatagram"); } -- cgit v1.2.3