summaryrefslogtreecommitdiffhomepage
path: root/talpid-core/src
diff options
context:
space:
mode:
authorLinus Färnstrand <linus@mullvad.net>2020-02-06 10:07:55 +0100
committerLinus Färnstrand <linus@mullvad.net>2020-02-06 15:08:20 +0100
commit033e58637a99a84a7ace29ff1c23bf7c3b456d48 (patch)
treee881ae68ac843427a46de173698c2eb9e31056c7 /talpid-core/src
parent8ced6b2a795352e99d212292c17378a7885b943a (diff)
downloadmullvadvpn-033e58637a99a84a7ace29ff1c23bf7c3b456d48.tar.xz
mullvadvpn-033e58637a99a84a7ace29ff1c23bf7c3b456d48.zip
Remove licence headers from Rust source code
According to the licence anyone who copies the source must attach the header anyway is my understanding
Diffstat (limited to 'talpid-core/src')
-rw-r--r--talpid-core/src/lib.rs12
-rw-r--r--talpid-core/src/offline/windows.rs8
2 files changed, 2 insertions, 18 deletions
diff --git a/talpid-core/src/lib.rs b/talpid-core/src/lib.rs
index cd88277d9d..9ab260eb9a 100644
--- a/talpid-core/src/lib.rs
+++ b/talpid-core/src/lib.rs
@@ -1,16 +1,8 @@
+//! The core components of the talpidaemon VPN client.
+
#![deny(missing_docs)]
#![deny(rust_2018_idioms)]
-//! The core components of the talpidaemon VPN client.
-//!
-//! # License
-//!
-//! Copyright (C) 2017 Amagicom AB
-//!
-//! This program is free software: you can redistribute it and/or modify it under the terms of the
-//! GNU General Public License as published by the Free Software Foundation, either version 3 of
-//! the License, or (at your option) any later version.
-
/// Misc FFI utilities.
#[cfg(windows)]
#[macro_use]
diff --git a/talpid-core/src/offline/windows.rs b/talpid-core/src/offline/windows.rs
index adcd14ce10..256fccfdde 100644
--- a/talpid-core/src/offline/windows.rs
+++ b/talpid-core/src/offline/windows.rs
@@ -1,11 +1,3 @@
-//! # License
-//!
-//! Copyright (C) 2018 Amagicom AB
-//!
-//! This program is free software: you can redistribute it and/or modify it under the terms of the
-//! GNU General Public License as published by the Free Software Foundation, either version 3 of
-//! the License, or (at your option) any later version.
-
use crate::{logging::windows::log_sink, tunnel_state_machine::TunnelCommand, winnet};
use futures::sync::mpsc::UnboundedSender;
use parking_lot::Mutex;