diff options
Diffstat (limited to 'ext/net')
-rw-r--r-- | ext/net/01_net.js | 2 | ||||
-rw-r--r-- | ext/net/02_tls.js | 2 | ||||
-rw-r--r-- | ext/net/Cargo.toml | 2 | ||||
-rw-r--r-- | ext/net/io.rs | 2 | ||||
-rw-r--r-- | ext/net/lib.deno_net.d.ts | 2 | ||||
-rw-r--r-- | ext/net/lib.rs | 2 | ||||
-rw-r--r-- | ext/net/ops.rs | 2 | ||||
-rw-r--r-- | ext/net/ops_tls.rs | 2 | ||||
-rw-r--r-- | ext/net/ops_unix.rs | 2 | ||||
-rw-r--r-- | ext/net/raw.rs | 2 | ||||
-rw-r--r-- | ext/net/resolve_addr.rs | 2 |
11 files changed, 11 insertions, 11 deletions
diff --git a/ext/net/01_net.js b/ext/net/01_net.js index 0f9a65122..c4a921536 100644 --- a/ext/net/01_net.js +++ b/ext/net/01_net.js @@ -1,4 +1,4 @@ -// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. import { core, primordials } from "ext:core/mod.js"; const { BadResourcePrototype, InterruptedPrototype, ops } = core; diff --git a/ext/net/02_tls.js b/ext/net/02_tls.js index 492e5fc30..aa876ff24 100644 --- a/ext/net/02_tls.js +++ b/ext/net/02_tls.js @@ -1,4 +1,4 @@ -// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. import { core, primordials } from "ext:core/mod.js"; const ops = core.ops; diff --git a/ext/net/Cargo.toml b/ext/net/Cargo.toml index 01f5ed49a..482405542 100644 --- a/ext/net/Cargo.toml +++ b/ext/net/Cargo.toml @@ -1,4 +1,4 @@ -# Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. +# Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. [package] name = "deno_net" diff --git a/ext/net/io.rs b/ext/net/io.rs index 630a24eb9..9254fce08 100644 --- a/ext/net/io.rs +++ b/ext/net/io.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. use deno_core::error::generic_error; use deno_core::error::AnyError; diff --git a/ext/net/lib.deno_net.d.ts b/ext/net/lib.deno_net.d.ts index 79e15563a..ab07094ce 100644 --- a/ext/net/lib.deno_net.d.ts +++ b/ext/net/lib.deno_net.d.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. /// <reference no-default-lib="true" /> /// <reference lib="esnext" /> diff --git a/ext/net/lib.rs b/ext/net/lib.rs index 1695fd264..675cffbe3 100644 --- a/ext/net/lib.rs +++ b/ext/net/lib.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. pub mod io; pub mod ops; diff --git a/ext/net/ops.rs b/ext/net/ops.rs index bbf897555..728c42bf6 100644 --- a/ext/net/ops.rs +++ b/ext/net/ops.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. use crate::io::TcpStreamResource; use crate::resolve_addr::resolve_addr; diff --git a/ext/net/ops_tls.rs b/ext/net/ops_tls.rs index 8c6474432..c0043c895 100644 --- a/ext/net/ops_tls.rs +++ b/ext/net/ops_tls.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. use crate::io::TcpStreamResource; use crate::ops::IpAddr; diff --git a/ext/net/ops_unix.rs b/ext/net/ops_unix.rs index ae37415ce..5a9ad7be9 100644 --- a/ext/net/ops_unix.rs +++ b/ext/net/ops_unix.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. use crate::io::UnixStreamResource; use crate::NetPermissions; diff --git a/ext/net/raw.rs b/ext/net/raw.rs index 9bdea4191..c583da3bd 100644 --- a/ext/net/raw.rs +++ b/ext/net/raw.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. use crate::io::TcpStreamResource; #[cfg(unix)] use crate::io::UnixStreamResource; diff --git a/ext/net/resolve_addr.rs b/ext/net/resolve_addr.rs index 07d245236..8bbdd5192 100644 --- a/ext/net/resolve_addr.rs +++ b/ext/net/resolve_addr.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. use deno_core::error::AnyError; use std::net::SocketAddr; |