From bfae85d913d444e65a672a29ee0c39d915c607a4 Mon Sep 17 00:00:00 2001 From: Adam Ierymenko Date: Wed, 6 Sep 2023 10:31:52 -0400 Subject: [PATCH] Add MPL to source files. --- src/lib.rs | 8 ++++++++ src/os_socket.rs | 8 ++++++++ 2 files changed, 16 insertions(+) diff --git a/src/lib.rs b/src/lib.rs index 99395e3..4370fe1 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,3 +1,11 @@ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * + * (c) ZeroTier, Inc. + * https://www.zerotier.com/ + */ + mod os_socket; use std::collections::HashSet; diff --git a/src/os_socket.rs b/src/os_socket.rs index 5f9bde0..c238127 100644 --- a/src/os_socket.rs +++ b/src/os_socket.rs @@ -1,3 +1,11 @@ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at https://mozilla.org/MPL/2.0/. + * + * (c) ZeroTier, Inc. + * https://www.zerotier.com/ + */ + #[allow(unused_imports)] use num_traits::AsPrimitive;