summaryrefslogtreecommitdiff
path: root/ext/net
diff options
context:
space:
mode:
Diffstat (limited to 'ext/net')
-rw-r--r--ext/net/01_net.js2
-rw-r--r--ext/net/02_tls.js2
-rw-r--r--ext/net/04_net_unstable.js2
-rw-r--r--ext/net/Cargo.toml2
-rw-r--r--ext/net/io.rs2
-rw-r--r--ext/net/lib.rs2
-rw-r--r--ext/net/ops.rs2
-rw-r--r--ext/net/ops_tls.rs2
-rw-r--r--ext/net/ops_unix.rs2
-rw-r--r--ext/net/resolve_addr.rs2
10 files changed, 10 insertions, 10 deletions
diff --git a/ext/net/01_net.js b/ext/net/01_net.js
index 0afdbeebc..4a4005954 100644
--- a/ext/net/01_net.js
+++ b/ext/net/01_net.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
"use strict";
((window) => {
diff --git a/ext/net/02_tls.js b/ext/net/02_tls.js
index 00acd7c96..90f395193 100644
--- a/ext/net/02_tls.js
+++ b/ext/net/02_tls.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
"use strict";
((window) => {
diff --git a/ext/net/04_net_unstable.js b/ext/net/04_net_unstable.js
index ca265bfaa..e22c9bf93 100644
--- a/ext/net/04_net_unstable.js
+++ b/ext/net/04_net_unstable.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
"use strict";
((window) => {
diff --git a/ext/net/Cargo.toml b/ext/net/Cargo.toml
index 7578bbdf4..4d791e930 100644
--- a/ext/net/Cargo.toml
+++ b/ext/net/Cargo.toml
@@ -1,4 +1,4 @@
-# Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+# Copyright 2018-2022 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 2b7aec446..9673a4a89 100644
--- a/ext/net/io.rs
+++ b/ext/net/io.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
use deno_core::error::AnyError;
use deno_core::AsyncMutFuture;
diff --git a/ext/net/lib.rs b/ext/net/lib.rs
index bbbfb3331..15bf8a79a 100644
--- a/ext/net/lib.rs
+++ b/ext/net/lib.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 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 538eab2d9..05085b401 100644
--- a/ext/net/ops.rs
+++ b/ext/net/ops.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 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 036aab5e6..64f1d458b 100644
--- a/ext/net/ops_tls.rs
+++ b/ext/net/ops_tls.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 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 58bfa0557..4f03ecb0a 100644
--- a/ext/net/ops_unix.rs
+++ b/ext/net/ops_unix.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
use crate::io::UnixStreamResource;
use crate::ops::AcceptArgs;
diff --git a/ext/net/resolve_addr.rs b/ext/net/resolve_addr.rs
index ebf1374d1..a7bd335e6 100644
--- a/ext/net/resolve_addr.rs
+++ b/ext/net/resolve_addr.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
use deno_core::error::AnyError;
use std::net::SocketAddr;