diff options
Diffstat (limited to 'client-native-lib/src')
-rw-r--r-- | client-native-lib/src/crypto.rs | 5 | ||||
-rw-r--r-- | client-native-lib/src/lib.rs | 5 | ||||
-rw-r--r-- | client-native-lib/src/peer.rs | 5 | ||||
-rw-r--r-- | client-native-lib/src/protocol.rs | 5 | ||||
-rw-r--r-- | client-native-lib/src/signaling.rs | 5 | ||||
-rw-r--r-- | client-native-lib/src/state.rs | 5 |
6 files changed, 30 insertions, 0 deletions
diff --git a/client-native-lib/src/crypto.rs b/client-native-lib/src/crypto.rs index 9bd8908..370a59d 100644 --- a/client-native-lib/src/crypto.rs +++ b/client-native-lib/src/crypto.rs @@ -1,3 +1,8 @@ +/* + 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> +*/ use aes_gcm::{ aead::{generic_array::sequence::GenericSequence, Aead}, Aes256Gcm, KeyInit, Nonce, diff --git a/client-native-lib/src/lib.rs b/client-native-lib/src/lib.rs index 68dcecb..d41fc58 100644 --- a/client-native-lib/src/lib.rs +++ b/client-native-lib/src/lib.rs @@ -1,3 +1,8 @@ +/* + 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> +*/ #![feature(async_closure)] #![feature(box_syntax)] diff --git a/client-native-lib/src/peer.rs b/client-native-lib/src/peer.rs index d6ca308..f2ca015 100644 --- a/client-native-lib/src/peer.rs +++ b/client-native-lib/src/peer.rs @@ -1,3 +1,8 @@ +/* + 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> +*/ use crate::{ protocol::{self, RTCSessionDescriptionInit, RelayMessage}, state::{HasPeer, PeerInit, State}, diff --git a/client-native-lib/src/protocol.rs b/client-native-lib/src/protocol.rs index 431dc42..6b2bf5d 100644 --- a/client-native-lib/src/protocol.rs +++ b/client-native-lib/src/protocol.rs @@ -1,3 +1,8 @@ +/* + 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> +*/ use serde::{Deserialize, Serialize}; use webrtc::{ ice_transport::ice_candidate::RTCIceCandidateInit, peer_connection::sdp::sdp_type::RTCSdpType, diff --git a/client-native-lib/src/signaling.rs b/client-native-lib/src/signaling.rs index ef49692..6235e04 100644 --- a/client-native-lib/src/signaling.rs +++ b/client-native-lib/src/signaling.rs @@ -1,3 +1,8 @@ +/* + 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> +*/ use std::time::Duration; use crate::protocol::ClientboundPacket; diff --git a/client-native-lib/src/state.rs b/client-native-lib/src/state.rs index 8501c3d..af4a05b 100644 --- a/client-native-lib/src/state.rs +++ b/client-native-lib/src/state.rs @@ -1,3 +1,8 @@ +/* + 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> +*/ use std::{collections::HashMap, pin::Pin, sync::Arc}; use futures_util::Future; |