aboutsummaryrefslogtreecommitdiff
path: root/client-native-lib
diff options
context:
space:
mode:
Diffstat (limited to 'client-native-lib')
-rw-r--r--client-native-lib/src/crypto.rs2
-rw-r--r--client-native-lib/src/instance.rs2
-rw-r--r--client-native-lib/src/lib.rs2
-rw-r--r--client-native-lib/src/peer.rs2
-rw-r--r--client-native-lib/src/protocol.rs2
-rw-r--r--client-native-lib/src/signaling.rs2
6 files changed, 6 insertions, 6 deletions
diff --git a/client-native-lib/src/crypto.rs b/client-native-lib/src/crypto.rs
index 0472ec7..f06443d 100644
--- a/client-native-lib/src/crypto.rs
+++ b/client-native-lib/src/crypto.rs
@@ -1,7 +1,7 @@
/*
This file is part of keks-meet (https://codeberg.org/metamuffin/keks-meet)
which is licensed under the GNU Affero General Public License (version 3); see /COPYING.
- Copyright (C) 2022 metamuffin <metamuffin@disroot.org>
+ Copyright (C) 2023 metamuffin <metamuffin@disroot.org>
*/
use aes_gcm::{
aead::{generic_array::sequence::GenericSequence, Aead},
diff --git a/client-native-lib/src/instance.rs b/client-native-lib/src/instance.rs
index 324c4af..d0b6846 100644
--- a/client-native-lib/src/instance.rs
+++ b/client-native-lib/src/instance.rs
@@ -1,7 +1,7 @@
/*
This file is part of keks-meet (https://codeberg.org/metamuffin/keks-meet)
which is licensed under the GNU Affero General Public License (version 3); see /COPYING.
- Copyright (C) 2022 metamuffin <metamuffin@disroot.org>
+ Copyright (C) 2023 metamuffin <metamuffin@disroot.org>
*/
use crate::{
build_api,
diff --git a/client-native-lib/src/lib.rs b/client-native-lib/src/lib.rs
index 5cfd2c6..5280b29 100644
--- a/client-native-lib/src/lib.rs
+++ b/client-native-lib/src/lib.rs
@@ -1,7 +1,7 @@
/*
This file is part of keks-meet (https://codeberg.org/metamuffin/keks-meet)
which is licensed under the GNU Affero General Public License (version 3); see /COPYING.
- Copyright (C) 2022 metamuffin <metamuffin@disroot.org>
+ Copyright (C) 2023 metamuffin <metamuffin@disroot.org>
*/
#![feature(async_closure)]
// #![feature(async_fn_in_trait)]
diff --git a/client-native-lib/src/peer.rs b/client-native-lib/src/peer.rs
index 5f08061..53b9b32 100644
--- a/client-native-lib/src/peer.rs
+++ b/client-native-lib/src/peer.rs
@@ -1,7 +1,7 @@
/*
This file is part of keks-meet (https://codeberg.org/metamuffin/keks-meet)
which is licensed under the GNU Affero General Public License (version 3); see /COPYING.
- Copyright (C) 2022 metamuffin <metamuffin@disroot.org>
+ Copyright (C) 2023 metamuffin <metamuffin@disroot.org>
*/
use crate::{
instance::Instance,
diff --git a/client-native-lib/src/protocol.rs b/client-native-lib/src/protocol.rs
index b7d0b89..1de6d2f 100644
--- a/client-native-lib/src/protocol.rs
+++ b/client-native-lib/src/protocol.rs
@@ -1,7 +1,7 @@
/*
This file is part of keks-meet (https://codeberg.org/metamuffin/keks-meet)
which is licensed under the GNU Affero General Public License (version 3); see /COPYING.
- Copyright (C) 2022 metamuffin <metamuffin@disroot.org>
+ Copyright (C) 2023 metamuffin <metamuffin@disroot.org>
*/
use serde::{Deserialize, Serialize};
use webrtc::ice_transport::ice_candidate::RTCIceCandidateInit;
diff --git a/client-native-lib/src/signaling.rs b/client-native-lib/src/signaling.rs
index 318ed7d..64250d3 100644
--- a/client-native-lib/src/signaling.rs
+++ b/client-native-lib/src/signaling.rs
@@ -1,7 +1,7 @@
/*
This file is part of keks-meet (https://codeberg.org/metamuffin/keks-meet)
which is licensed under the GNU Affero General Public License (version 3); see /COPYING.
- Copyright (C) 2022 metamuffin <metamuffin@disroot.org>
+ Copyright (C) 2023 metamuffin <metamuffin@disroot.org>
*/
use crate::protocol::ClientboundPacket;
use crate::{crypto::hash, protocol::ServerboundPacket};