summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/rust/external/external.rs3
-rw-r--r--src/rust/protover/ffi.rs3
-rw-r--r--src/rust/protover/protover.rs3
-rw-r--r--src/rust/protover/tests/protover.rs3
-rw-r--r--src/rust/smartlist/lib.rs3
-rw-r--r--src/rust/smartlist/smartlist.rs3
-rw-r--r--src/rust/tor_allocate/lib.rs3
-rw-r--r--src/rust/tor_allocate/tor_allocate.rs3
-rw-r--r--src/rust/tor_util/ffi.rs3
-rw-r--r--src/rust/tor_util/lib.rs3
10 files changed, 30 insertions, 0 deletions
diff --git a/src/rust/external/external.rs b/src/rust/external/external.rs
index 09d80cb2ba..b9e17f021d 100644
--- a/src/rust/external/external.rs
+++ b/src/rust/external/external.rs
@@ -1,3 +1,6 @@
+// Copyright (c) 2016-2017, The Tor Project, Inc. */
+// See LICENSE for licensing information */
+
use libc::{c_char, c_int};
use std::ffi::CString;
diff --git a/src/rust/protover/ffi.rs b/src/rust/protover/ffi.rs
index f897c98083..cf2e9fd783 100644
--- a/src/rust/protover/ffi.rs
+++ b/src/rust/protover/ffi.rs
@@ -1,3 +1,6 @@
+// Copyright (c) 2016-2017, The Tor Project, Inc. */
+// See LICENSE for licensing information */
+
//! FFI functions, only to be called from C.
//!
//! Equivalent C versions of this api are in `src/or/protover.c`
diff --git a/src/rust/protover/protover.rs b/src/rust/protover/protover.rs
index d75da61aa8..11e9d0079e 100644
--- a/src/rust/protover/protover.rs
+++ b/src/rust/protover/protover.rs
@@ -1,3 +1,6 @@
+// Copyright (c) 2016-2017, The Tor Project, Inc. */
+// See LICENSE for licensing information */
+
use external::c_tor_version_as_new_as;
use std::str::FromStr;
diff --git a/src/rust/protover/tests/protover.rs b/src/rust/protover/tests/protover.rs
index af7633a484..f4e394b3e2 100644
--- a/src/rust/protover/tests/protover.rs
+++ b/src/rust/protover/tests/protover.rs
@@ -1,3 +1,6 @@
+// Copyright (c) 2016-2017, The Tor Project, Inc. */
+// See LICENSE for licensing information */
+
extern crate protover;
#[test]
diff --git a/src/rust/smartlist/lib.rs b/src/rust/smartlist/lib.rs
index 71d89a3b87..14a8148315 100644
--- a/src/rust/smartlist/lib.rs
+++ b/src/rust/smartlist/lib.rs
@@ -1,3 +1,6 @@
+// Copyright (c) 2016-2017, The Tor Project, Inc. */
+// See LICENSE for licensing information */
+
extern crate libc;
mod smartlist;
diff --git a/src/rust/smartlist/smartlist.rs b/src/rust/smartlist/smartlist.rs
index 9f5e14f1ad..ec5d7a57f5 100644
--- a/src/rust/smartlist/smartlist.rs
+++ b/src/rust/smartlist/smartlist.rs
@@ -1,3 +1,6 @@
+// Copyright (c) 2016-2017, The Tor Project, Inc. */
+// See LICENSE for licensing information */
+
use std::slice;
use libc::{c_char, c_int};
use std::ffi::CStr;
diff --git a/src/rust/tor_allocate/lib.rs b/src/rust/tor_allocate/lib.rs
index 81afd095f9..937a5dcf63 100644
--- a/src/rust/tor_allocate/lib.rs
+++ b/src/rust/tor_allocate/lib.rs
@@ -1,3 +1,6 @@
+// Copyright (c) 2016-2017, The Tor Project, Inc. */
+// See LICENSE for licensing information */
+
//! Allocation helper functions that allow data to be allocated in Rust
//! using tor's specified allocator. In doing so, this can be later freed
//! from C.
diff --git a/src/rust/tor_allocate/tor_allocate.rs b/src/rust/tor_allocate/tor_allocate.rs
index 663600ec5c..8a6fabe9cb 100644
--- a/src/rust/tor_allocate/tor_allocate.rs
+++ b/src/rust/tor_allocate/tor_allocate.rs
@@ -1,3 +1,6 @@
+// Copyright (c) 2016-2017, The Tor Project, Inc. */
+// See LICENSE for licensing information */
+
use libc::{c_char, c_void};
use std::{ptr, slice, mem};
diff --git a/src/rust/tor_util/ffi.rs b/src/rust/tor_util/ffi.rs
index 214727a190..76c6e6d394 100644
--- a/src/rust/tor_util/ffi.rs
+++ b/src/rust/tor_util/ffi.rs
@@ -1,3 +1,6 @@
+// Copyright (c) 2016-2017, The Tor Project, Inc. */
+// See LICENSE for licensing information */
+
//! FFI functions to announce Rust support during tor startup, only to be
//! called from C.
//!
diff --git a/src/rust/tor_util/lib.rs b/src/rust/tor_util/lib.rs
index 9c863e39bd..42fa9d5ad0 100644
--- a/src/rust/tor_util/lib.rs
+++ b/src/rust/tor_util/lib.rs
@@ -1,3 +1,6 @@
+// Copyright (c) 2016-2017, The Tor Project, Inc. */
+// See LICENSE for licensing information */
+
//! Small module to announce Rust support during startup for demonstration
//! purposes.
//!