diff options
author | metamuffin <metamuffin@disroot.org> | 2022-09-16 22:57:58 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2022-09-16 22:57:58 +0200 |
commit | ecd6ee088847a7068cb97a728b40450dc5e923b5 (patch) | |
tree | 210cdbde5b15c7747287655973a4f2f3c9a415df /client-native-lib | |
parent | 645b4cb35f3c128a4325e62a8a58078f0506b278 (diff) | |
download | keks-meet-ecd6ee088847a7068cb97a728b40450dc5e923b5.tar keks-meet-ecd6ee088847a7068cb97a728b40450dc5e923b5.tar.bz2 keks-meet-ecd6ee088847a7068cb97a728b40450dc5e923b5.tar.zst |
add a short copyright notice to *every* single source!
Diffstat (limited to 'client-native-lib')
-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; |