From e6228807ba0d47bb2a735d3adedbba68b9f9ad8b Mon Sep 17 00:00:00 2001 From: Perry Lorier Date: Mon, 21 Oct 2024 06:20:16 +0100 Subject: [PATCH] Bump copyright version --- crates/erbium-core/src/acl.rs | 2 +- crates/erbium-core/src/bin/erbium-conftest.rs | 2 +- crates/erbium-core/src/bin/erbium-dhcp.rs | 2 +- crates/erbium-core/src/bin/erbium-dns.rs | 2 +- crates/erbium-core/src/bin/erbium-lldp.rs | 2 +- crates/erbium-core/src/config.rs | 2 +- crates/erbium-core/src/dhcp/config.rs | 2 +- crates/erbium-core/src/dhcp/dhcppkt.rs | 2 +- crates/erbium-core/src/dhcp/mod.rs | 2 +- crates/erbium-core/src/dhcp/pool.rs | 2 +- crates/erbium-core/src/dhcp/test.rs | 2 +- crates/erbium-core/src/dns/bucket.rs | 2 +- crates/erbium-core/src/dns/cache/mod.rs | 2 +- crates/erbium-core/src/dns/cache/test.rs | 2 +- crates/erbium-core/src/dns/config.rs | 2 +- crates/erbium-core/src/dns/dnspkt.rs | 2 +- crates/erbium-core/src/dns/mod.rs | 2 +- crates/erbium-core/src/dns/outquery.rs | 2 +- crates/erbium-core/src/dns/parse.rs | 2 +- crates/erbium-core/src/dns/router.rs | 2 +- crates/erbium-core/src/http.rs | 2 +- crates/erbium-core/src/lib.rs | 2 +- crates/erbium-core/src/pktparser/mod.rs | 2 +- crates/erbium-core/src/radv/config.rs | 2 +- crates/erbium-core/src/radv/mod.rs | 2 +- crates/erbium-core/src/radv/test/rfc4861.rs | 2 +- crates/erbium-core/src/radv/test_rfc4861.rs | 2 +- crates/erbium-net/src/addr/link.rs | 2 +- crates/erbium-net/src/addr/mod.rs | 2 +- crates/erbium-net/src/lib.rs | 2 +- crates/erbium-net/src/netinfo.rs | 2 +- crates/erbium-net/src/packet.rs | 2 +- crates/erbium-net/src/raw.rs | 2 +- crates/erbium-net/src/socket.rs | 2 +- crates/erbium-net/src/udp.rs | 2 +- crates/erbium/src/main.rs | 2 +- 36 files changed, 36 insertions(+), 36 deletions(-) diff --git a/crates/erbium-core/src/acl.rs b/crates/erbium-core/src/acl.rs index 1caea1d..af57e13 100644 --- a/crates/erbium-core/src/acl.rs +++ b/crates/erbium-core/src/acl.rs @@ -1,4 +1,4 @@ -/* Copyright 2023 Perry Lorier +/* Copyright 2024 Perry Lorier * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/crates/erbium-core/src/bin/erbium-conftest.rs b/crates/erbium-core/src/bin/erbium-conftest.rs index e024a77..30879a8 100644 --- a/crates/erbium-core/src/bin/erbium-conftest.rs +++ b/crates/erbium-core/src/bin/erbium-conftest.rs @@ -1,4 +1,4 @@ -/* Copyright 2023 Perry Lorier +/* Copyright 2024 Perry Lorier * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/crates/erbium-core/src/bin/erbium-dhcp.rs b/crates/erbium-core/src/bin/erbium-dhcp.rs index d03b296..bec5769 100644 --- a/crates/erbium-core/src/bin/erbium-dhcp.rs +++ b/crates/erbium-core/src/bin/erbium-dhcp.rs @@ -1,4 +1,4 @@ -/* Copyright 2023 Perry Lorier +/* Copyright 2024 Perry Lorier * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/crates/erbium-core/src/bin/erbium-dns.rs b/crates/erbium-core/src/bin/erbium-dns.rs index 2347003..8c36757 100644 --- a/crates/erbium-core/src/bin/erbium-dns.rs +++ b/crates/erbium-core/src/bin/erbium-dns.rs @@ -1,4 +1,4 @@ -/* Copyright 2023 Perry Lorier +/* Copyright 2024 Perry Lorier * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/crates/erbium-core/src/bin/erbium-lldp.rs b/crates/erbium-core/src/bin/erbium-lldp.rs index fc9c556..06e9044 100644 --- a/crates/erbium-core/src/bin/erbium-lldp.rs +++ b/crates/erbium-core/src/bin/erbium-lldp.rs @@ -1,4 +1,4 @@ -/* Copyright 2023 Perry Lorier +/* Copyright 2024 Perry Lorier * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/crates/erbium-core/src/config.rs b/crates/erbium-core/src/config.rs index 1aef0d2..22cd18a 100644 --- a/crates/erbium-core/src/config.rs +++ b/crates/erbium-core/src/config.rs @@ -1,4 +1,4 @@ -/* Copyright 2023 Perry Lorier +/* Copyright 2024 Perry Lorier * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/crates/erbium-core/src/dhcp/config.rs b/crates/erbium-core/src/dhcp/config.rs index 4b50df8..c2c2f26 100644 --- a/crates/erbium-core/src/dhcp/config.rs +++ b/crates/erbium-core/src/dhcp/config.rs @@ -1,4 +1,4 @@ -/* Copyright 2023 Perry Lorier +/* Copyright 2024 Perry Lorier * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/crates/erbium-core/src/dhcp/dhcppkt.rs b/crates/erbium-core/src/dhcp/dhcppkt.rs index 42d8e77..31132b8 100644 --- a/crates/erbium-core/src/dhcp/dhcppkt.rs +++ b/crates/erbium-core/src/dhcp/dhcppkt.rs @@ -1,4 +1,4 @@ -/* Copyright 2023 Perry Lorier +/* Copyright 2024 Perry Lorier * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/crates/erbium-core/src/dhcp/mod.rs b/crates/erbium-core/src/dhcp/mod.rs index 7bca5a3..ddb3208 100644 --- a/crates/erbium-core/src/dhcp/mod.rs +++ b/crates/erbium-core/src/dhcp/mod.rs @@ -1,4 +1,4 @@ -/* Copyright 2023 Perry Lorier +/* Copyright 2024 Perry Lorier * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/crates/erbium-core/src/dhcp/pool.rs b/crates/erbium-core/src/dhcp/pool.rs index e08c99a..5fe2bdc 100644 --- a/crates/erbium-core/src/dhcp/pool.rs +++ b/crates/erbium-core/src/dhcp/pool.rs @@ -1,4 +1,4 @@ -/* Copyright 2023 Perry Lorier +/* Copyright 2024 Perry Lorier * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/crates/erbium-core/src/dhcp/test.rs b/crates/erbium-core/src/dhcp/test.rs index b4b4bd7..dccf9af 100644 --- a/crates/erbium-core/src/dhcp/test.rs +++ b/crates/erbium-core/src/dhcp/test.rs @@ -1,4 +1,4 @@ -/* Copyright 2023 Perry Lorier +/* Copyright 2024 Perry Lorier * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/crates/erbium-core/src/dns/bucket.rs b/crates/erbium-core/src/dns/bucket.rs index 047de2e..d585495 100644 --- a/crates/erbium-core/src/dns/bucket.rs +++ b/crates/erbium-core/src/dns/bucket.rs @@ -1,4 +1,4 @@ -/* Copyright 2023 Perry Lorier +/* Copyright 2024 Perry Lorier * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/crates/erbium-core/src/dns/cache/mod.rs b/crates/erbium-core/src/dns/cache/mod.rs index 742233f..8c4aa6d 100644 --- a/crates/erbium-core/src/dns/cache/mod.rs +++ b/crates/erbium-core/src/dns/cache/mod.rs @@ -1,4 +1,4 @@ -/* Copyright 2023 Perry Lorier +/* Copyright 2024 Perry Lorier * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/crates/erbium-core/src/dns/cache/test.rs b/crates/erbium-core/src/dns/cache/test.rs index 5a9f34d..081461a 100644 --- a/crates/erbium-core/src/dns/cache/test.rs +++ b/crates/erbium-core/src/dns/cache/test.rs @@ -1,4 +1,4 @@ -/* Copyright 2023 Perry Lorier +/* Copyright 2024 Perry Lorier * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/crates/erbium-core/src/dns/config.rs b/crates/erbium-core/src/dns/config.rs index f7fbe39..2dcb7f2 100644 --- a/crates/erbium-core/src/dns/config.rs +++ b/crates/erbium-core/src/dns/config.rs @@ -1,4 +1,4 @@ -/* Copyright 2023 Perry Lorier +/* Copyright 2024 Perry Lorier * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/crates/erbium-core/src/dns/dnspkt.rs b/crates/erbium-core/src/dns/dnspkt.rs index 85c7de5..e8422d9 100644 --- a/crates/erbium-core/src/dns/dnspkt.rs +++ b/crates/erbium-core/src/dns/dnspkt.rs @@ -1,4 +1,4 @@ -/* Copyright 2023 Perry Lorier +/* Copyright 2024 Perry Lorier * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/crates/erbium-core/src/dns/mod.rs b/crates/erbium-core/src/dns/mod.rs index f2c7614..a110ca1 100644 --- a/crates/erbium-core/src/dns/mod.rs +++ b/crates/erbium-core/src/dns/mod.rs @@ -1,4 +1,4 @@ -/* Copyright 2023 Perry Lorier +/* Copyright 2024 Perry Lorier * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/crates/erbium-core/src/dns/outquery.rs b/crates/erbium-core/src/dns/outquery.rs index d03ce85..e340aa8 100644 --- a/crates/erbium-core/src/dns/outquery.rs +++ b/crates/erbium-core/src/dns/outquery.rs @@ -1,4 +1,4 @@ -/* Copyright 2023 Perry Lorier +/* Copyright 2024 Perry Lorier * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/crates/erbium-core/src/dns/parse.rs b/crates/erbium-core/src/dns/parse.rs index e88986e..81edef7 100644 --- a/crates/erbium-core/src/dns/parse.rs +++ b/crates/erbium-core/src/dns/parse.rs @@ -1,4 +1,4 @@ -/* Copyright 2023 Perry Lorier +/* Copyright 2024 Perry Lorier * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/crates/erbium-core/src/dns/router.rs b/crates/erbium-core/src/dns/router.rs index 30a028d..5d98319 100644 --- a/crates/erbium-core/src/dns/router.rs +++ b/crates/erbium-core/src/dns/router.rs @@ -1,4 +1,4 @@ -/* Copyright 2023 Perry Lorier +/* Copyright 2024 Perry Lorier * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/crates/erbium-core/src/http.rs b/crates/erbium-core/src/http.rs index 985565f..ee62a3d 100644 --- a/crates/erbium-core/src/http.rs +++ b/crates/erbium-core/src/http.rs @@ -1,4 +1,4 @@ -/* Copyright 2023 Perry Lorier +/* Copyright 2024 Perry Lorier * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/crates/erbium-core/src/lib.rs b/crates/erbium-core/src/lib.rs index cd989a5..bf3297f 100644 --- a/crates/erbium-core/src/lib.rs +++ b/crates/erbium-core/src/lib.rs @@ -1,4 +1,4 @@ -/* Copyright 2023 Perry Lorier +/* Copyright 2024 Perry Lorier * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/crates/erbium-core/src/pktparser/mod.rs b/crates/erbium-core/src/pktparser/mod.rs index eb4e404..ce6f90e 100644 --- a/crates/erbium-core/src/pktparser/mod.rs +++ b/crates/erbium-core/src/pktparser/mod.rs @@ -1,4 +1,4 @@ -/* Copyright 2023 Perry Lorier +/* Copyright 2024 Perry Lorier * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/crates/erbium-core/src/radv/config.rs b/crates/erbium-core/src/radv/config.rs index 4dfc8be..1b90d53 100644 --- a/crates/erbium-core/src/radv/config.rs +++ b/crates/erbium-core/src/radv/config.rs @@ -1,4 +1,4 @@ -/* Copyright 2023 Perry Lorier +/* Copyright 2024 Perry Lorier * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/crates/erbium-core/src/radv/mod.rs b/crates/erbium-core/src/radv/mod.rs index 354a0f1..fc767a7 100644 --- a/crates/erbium-core/src/radv/mod.rs +++ b/crates/erbium-core/src/radv/mod.rs @@ -1,4 +1,4 @@ -/* Copyright 2023 Perry Lorier +/* Copyright 2024 Perry Lorier * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/crates/erbium-core/src/radv/test/rfc4861.rs b/crates/erbium-core/src/radv/test/rfc4861.rs index b265082..66e403c 100644 --- a/crates/erbium-core/src/radv/test/rfc4861.rs +++ b/crates/erbium-core/src/radv/test/rfc4861.rs @@ -1,4 +1,4 @@ -/* Copyright 2023 Perry Lorier +/* Copyright 2024 Perry Lorier * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/crates/erbium-core/src/radv/test_rfc4861.rs b/crates/erbium-core/src/radv/test_rfc4861.rs index 89cd84b..219002c 100644 --- a/crates/erbium-core/src/radv/test_rfc4861.rs +++ b/crates/erbium-core/src/radv/test_rfc4861.rs @@ -1,4 +1,4 @@ -/* Copyright 2023 Perry Lorier +/* Copyright 2024 Perry Lorier * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/crates/erbium-net/src/addr/link.rs b/crates/erbium-net/src/addr/link.rs index 1d222f6..611c031 100644 --- a/crates/erbium-net/src/addr/link.rs +++ b/crates/erbium-net/src/addr/link.rs @@ -1,4 +1,4 @@ -/* Copyright 2023 Perry Lorier +/* Copyright 2024 Perry Lorier * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/crates/erbium-net/src/addr/mod.rs b/crates/erbium-net/src/addr/mod.rs index b6f904b..df210bc 100644 --- a/crates/erbium-net/src/addr/mod.rs +++ b/crates/erbium-net/src/addr/mod.rs @@ -1,4 +1,4 @@ -/* Copyright 2023 Perry Lorier +/* Copyright 2024 Perry Lorier * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/crates/erbium-net/src/lib.rs b/crates/erbium-net/src/lib.rs index 23c1437..e26d2ac 100644 --- a/crates/erbium-net/src/lib.rs +++ b/crates/erbium-net/src/lib.rs @@ -1,4 +1,4 @@ -/* Copyright 2023 Perry Lorier +/* Copyright 2024 Perry Lorier * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/crates/erbium-net/src/netinfo.rs b/crates/erbium-net/src/netinfo.rs index b689747..edf90ed 100644 --- a/crates/erbium-net/src/netinfo.rs +++ b/crates/erbium-net/src/netinfo.rs @@ -1,4 +1,4 @@ -/* Copyright 2023 Perry Lorier +/* Copyright 2024 Perry Lorier * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/crates/erbium-net/src/packet.rs b/crates/erbium-net/src/packet.rs index 36a910e..d75566c 100644 --- a/crates/erbium-net/src/packet.rs +++ b/crates/erbium-net/src/packet.rs @@ -1,4 +1,4 @@ -/* Copyright 2023 Perry Lorier +/* Copyright 2024 Perry Lorier * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/crates/erbium-net/src/raw.rs b/crates/erbium-net/src/raw.rs index 4f141e8..fbead95 100644 --- a/crates/erbium-net/src/raw.rs +++ b/crates/erbium-net/src/raw.rs @@ -1,4 +1,4 @@ -/* Copyright 2023 Perry Lorier +/* Copyright 2024 Perry Lorier * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/crates/erbium-net/src/socket.rs b/crates/erbium-net/src/socket.rs index 1ef04cf..af4e07e 100644 --- a/crates/erbium-net/src/socket.rs +++ b/crates/erbium-net/src/socket.rs @@ -1,4 +1,4 @@ -/* Copyright 2023 Perry Lorier +/* Copyright 2024 Perry Lorier * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/crates/erbium-net/src/udp.rs b/crates/erbium-net/src/udp.rs index 7861d99..a3f2d05 100644 --- a/crates/erbium-net/src/udp.rs +++ b/crates/erbium-net/src/udp.rs @@ -1,4 +1,4 @@ -/* Copyright 2023 Perry Lorier +/* Copyright 2024 Perry Lorier * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/crates/erbium/src/main.rs b/crates/erbium/src/main.rs index 0c5d9da..6d1547e 100644 --- a/crates/erbium/src/main.rs +++ b/crates/erbium/src/main.rs @@ -1,4 +1,4 @@ -/* Copyright 2023 Perry Lorier +/* Copyright 2024 Perry Lorier * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License.