From 8f47a9e312a6672e32a24f163b060fe6c762ee85 Mon Sep 17 00:00:00 2001 From: Am1GO Date: Thu, 11 Dec 2014 10:50:15 +0300 Subject: [PATCH] Copyright added to source headers --- CMakeLists.txt | 1 + CONTRIBUTORS | 2 +- adler32.hh | 1 + appendallocator.cc | 1 + appendallocator.hh | 1 + backup_creator.cc | 1 + backup_creator.hh | 1 + backup_exchanger.cc | 1 + backup_exchanger.hh | 1 + backup_file.cc | 1 + backup_file.hh | 1 + backup_restorer.cc | 1 + backup_restorer.hh | 1 + bundle.cc | 1 + bundle.hh | 1 + check.hh | 1 + chunk_id.cc | 1 + chunk_id.hh | 1 + chunk_index.cc | 1 + chunk_index.hh | 1 + chunk_storage.cc | 1 + chunk_storage.hh | 1 + compression.cc | 1 + compression.hh | 1 + debug.cc | 1 + debug.hh | 1 + dir.cc | 1 + dir.hh | 1 + encrypted_file.cc | 1 + encrypted_file.hh | 1 + encryption.cc | 1 + encryption.hh | 1 + encryption_key.cc | 1 + encryption_key.hh | 1 + endian.hh | 1 + ex.hh | 1 + file.cc | 1 + file.hh | 1 + hex.cc | 1 + hex.hh | 1 + index_file.cc | 1 + index_file.hh | 1 + message.cc | 1 + message.hh | 1 + mt.cc | 1 + mt.hh | 1 + nocopy.hh | 1 + objectcache.cc | 1 + objectcache.hh | 1 + page_size.cc | 1 + page_size.hh | 1 + random.cc | 1 + random.hh | 1 + rolling_hash.cc | 1 + rolling_hash.hh | 1 + sha256.cc | 1 + sha256.hh | 1 + sptr.hh | 1 + static_assert.hh | 1 + storage_info_file.cc | 1 + storage_info_file.hh | 1 + tartool/CMakeLists.txt | 1 + tartool/tartool.cc | 1 + tests/bundle/test_bundle.cc | 1 + tests/encrypted_file/test_encrypted_file.cc | 1 + tests/rolling_hash/test_rolling_hash.cc | 1 + tmp_mgr.cc | 1 + tmp_mgr.hh | 1 + unbuffered_file.cc | 1 + unbuffered_file.hh | 1 + zbackup.cc | 1 + zbackup.hh | 1 + zbackup.proto | 1 + zbackup_base.cc | 1 + zbackup_base.hh | 1 + zcollector.cc | 1 + zcollector.hh | 1 + 77 files changed, 77 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4832ae1..4a34d94 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,3 +1,4 @@ +# Copyright (c) 2012-2014 Konstantin Isakov and ZBackup contributors, see CONTRIBUTORS # Part of ZBackup. Licensed under GNU GPLv2 or later + OpenSSL, see LICENSE cmake_minimum_required( VERSION 2.8.2 ) diff --git a/CONTRIBUTORS b/CONTRIBUTORS index 0969dce..dc928ec 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -1,5 +1,5 @@ This file contains a list of people who have made contributions -to the zbackup. +to the ZBackup. Original design and implementation: Konstantin Isakov diff --git a/adler32.hh b/adler32.hh index 03644b9..62404b1 100644 --- a/adler32.hh +++ b/adler32.hh @@ -1,3 +1,4 @@ +// Copyright (c) 2012-2014 Konstantin Isakov and ZBackup contributors, see CONTRIBUTORS // Part of ZBackup. Licensed under GNU GPLv2 or later + OpenSSL, see LICENSE #ifndef ADLER32_HH_INCLUDED__ diff --git a/appendallocator.cc b/appendallocator.cc index c668421..86da193 100644 --- a/appendallocator.cc +++ b/appendallocator.cc @@ -1,3 +1,4 @@ +// Copyright (c) 2012-2014 Konstantin Isakov and ZBackup contributors, see CONTRIBUTORS // Part of ZBackup. Licensed under GNU GPLv2 or later + OpenSSL, see LICENSE #include diff --git a/appendallocator.hh b/appendallocator.hh index bfe7030..9429c7f 100644 --- a/appendallocator.hh +++ b/appendallocator.hh @@ -1,3 +1,4 @@ +// Copyright (c) 2012-2014 Konstantin Isakov and ZBackup contributors, see CONTRIBUTORS // Part of ZBackup. Licensed under GNU GPLv2 or later + OpenSSL, see LICENSE #ifndef APPENDALLOCATOR_HH_INCLUDED__ diff --git a/backup_creator.cc b/backup_creator.cc index f5762e9..bdaace5 100644 --- a/backup_creator.cc +++ b/backup_creator.cc @@ -1,3 +1,4 @@ +// Copyright (c) 2012-2014 Konstantin Isakov and ZBackup contributors, see CONTRIBUTORS // Part of ZBackup. Licensed under GNU GPLv2 or later + OpenSSL, see LICENSE #include diff --git a/backup_creator.hh b/backup_creator.hh index c8267c2..dc97a5b 100644 --- a/backup_creator.hh +++ b/backup_creator.hh @@ -1,3 +1,4 @@ +// Copyright (c) 2012-2014 Konstantin Isakov and ZBackup contributors, see CONTRIBUTORS // Part of ZBackup. Licensed under GNU GPLv2 or later + OpenSSL, see LICENSE #ifndef BACKUP_CREATOR_HH_INCLUDED__ diff --git a/backup_exchanger.cc b/backup_exchanger.cc index 212b28b..5cd1a7f 100644 --- a/backup_exchanger.cc +++ b/backup_exchanger.cc @@ -1,3 +1,4 @@ +// Copyright (c) 2012-2014 Konstantin Isakov and ZBackup contributors, see CONTRIBUTORS // Part of ZBackup. Licensed under GNU GPLv2 or later + OpenSSL, see LICENSE #include "backup_exchanger.hh" diff --git a/backup_exchanger.hh b/backup_exchanger.hh index c834e32..67db691 100644 --- a/backup_exchanger.hh +++ b/backup_exchanger.hh @@ -1,3 +1,4 @@ +// Copyright (c) 2012-2014 Konstantin Isakov and ZBackup contributors, see CONTRIBUTORS // Part of ZBackup. Licensed under GNU GPLv2 or later + OpenSSL, see LICENSE #ifndef BACKUP_EXCHANGER_HH_INCLUDED__ diff --git a/backup_file.cc b/backup_file.cc index 6590ce1..b54bc2f 100644 --- a/backup_file.cc +++ b/backup_file.cc @@ -1,3 +1,4 @@ +// Copyright (c) 2012-2014 Konstantin Isakov and ZBackup contributors, see CONTRIBUTORS // Part of ZBackup. Licensed under GNU GPLv2 or later + OpenSSL, see LICENSE #include "backup_file.hh" diff --git a/backup_file.hh b/backup_file.hh index f0594d6..2fb21a0 100644 --- a/backup_file.hh +++ b/backup_file.hh @@ -1,3 +1,4 @@ +// Copyright (c) 2012-2014 Konstantin Isakov and ZBackup contributors, see CONTRIBUTORS // Part of ZBackup. Licensed under GNU GPLv2 or later + OpenSSL, see LICENSE #ifndef BACKUP_FILE_HH_INCLUDED__ diff --git a/backup_restorer.cc b/backup_restorer.cc index 378e369..3b83cd0 100644 --- a/backup_restorer.cc +++ b/backup_restorer.cc @@ -1,3 +1,4 @@ +// Copyright (c) 2012-2014 Konstantin Isakov and ZBackup contributors, see CONTRIBUTORS // Part of ZBackup. Licensed under GNU GPLv2 or later + OpenSSL, see LICENSE #include diff --git a/backup_restorer.hh b/backup_restorer.hh index 4b4436b..e0ab2f7 100644 --- a/backup_restorer.hh +++ b/backup_restorer.hh @@ -1,3 +1,4 @@ +// Copyright (c) 2012-2014 Konstantin Isakov and ZBackup contributors, see CONTRIBUTORS // Part of ZBackup. Licensed under GNU GPLv2 or later + OpenSSL, see LICENSE #ifndef BACKUP_RESTORER_HH_INCLUDED__ diff --git a/bundle.cc b/bundle.cc index fae0850..00630bb 100644 --- a/bundle.cc +++ b/bundle.cc @@ -1,3 +1,4 @@ +// Copyright (c) 2012-2014 Konstantin Isakov and ZBackup contributors, see CONTRIBUTORS // Part of ZBackup. Licensed under GNU GPLv2 or later + OpenSSL, see LICENSE #include diff --git a/bundle.hh b/bundle.hh index 7e0fa6b..bac8ffa 100644 --- a/bundle.hh +++ b/bundle.hh @@ -1,3 +1,4 @@ +// Copyright (c) 2012-2014 Konstantin Isakov and ZBackup contributors, see CONTRIBUTORS // Part of ZBackup. Licensed under GNU GPLv2 or later + OpenSSL, see LICENSE #ifndef BUNDLE_HH_INCLUDED__ diff --git a/check.hh b/check.hh index 227bec2..c6109bd 100644 --- a/check.hh +++ b/check.hh @@ -1,3 +1,4 @@ +// Copyright (c) 2012-2014 Konstantin Isakov and ZBackup contributors, see CONTRIBUTORS // Part of ZBackup. Licensed under GNU GPLv2 or later + OpenSSL, see LICENSE #ifndef CHECK_HH_INCLUDED__ diff --git a/chunk_id.cc b/chunk_id.cc index 1fa3e20..bb87420 100644 --- a/chunk_id.cc +++ b/chunk_id.cc @@ -1,3 +1,4 @@ +// Copyright (c) 2012-2014 Konstantin Isakov and ZBackup contributors, see CONTRIBUTORS // Part of ZBackup. Licensed under GNU GPLv2 or later + OpenSSL, see LICENSE #include "chunk_id.hh" diff --git a/chunk_id.hh b/chunk_id.hh index b362962..34f09b7 100644 --- a/chunk_id.hh +++ b/chunk_id.hh @@ -1,3 +1,4 @@ +// Copyright (c) 2012-2014 Konstantin Isakov and ZBackup contributors, see CONTRIBUTORS // Part of ZBackup. Licensed under GNU GPLv2 or later + OpenSSL, see LICENSE #ifndef CHUNK_ID_HH_INCLUDED__ diff --git a/chunk_index.cc b/chunk_index.cc index eeedffc..747cb1f 100644 --- a/chunk_index.cc +++ b/chunk_index.cc @@ -1,3 +1,4 @@ +// Copyright (c) 2012-2014 Konstantin Isakov and ZBackup contributors, see CONTRIBUTORS // Part of ZBackup. Licensed under GNU GPLv2 or later + OpenSSL, see LICENSE #include diff --git a/chunk_index.hh b/chunk_index.hh index 9e09f65..0ce1646 100644 --- a/chunk_index.hh +++ b/chunk_index.hh @@ -1,3 +1,4 @@ +// Copyright (c) 2012-2014 Konstantin Isakov and ZBackup contributors, see CONTRIBUTORS // Part of ZBackup. Licensed under GNU GPLv2 or later + OpenSSL, see LICENSE #ifndef CHUNK_INDEX_HH_INCLUDED__ diff --git a/chunk_storage.cc b/chunk_storage.cc index d042d2e..38941b0 100644 --- a/chunk_storage.cc +++ b/chunk_storage.cc @@ -1,3 +1,4 @@ +// Copyright (c) 2012-2014 Konstantin Isakov and ZBackup contributors, see CONTRIBUTORS // Part of ZBackup. Licensed under GNU GPLv2 or later + OpenSSL, see LICENSE #include "check.hh" diff --git a/chunk_storage.hh b/chunk_storage.hh index 001660a..6df8ae6 100644 --- a/chunk_storage.hh +++ b/chunk_storage.hh @@ -1,3 +1,4 @@ +// Copyright (c) 2012-2014 Konstantin Isakov and ZBackup contributors, see CONTRIBUTORS // Part of ZBackup. Licensed under GNU GPLv2 or later + OpenSSL, see LICENSE #ifndef CHUNK_STORAGE_HH_INCLUDED__ diff --git a/compression.cc b/compression.cc index 4a73677..9b3ea8e 100644 --- a/compression.cc +++ b/compression.cc @@ -1,3 +1,4 @@ +// Copyright (c) 2012-2014 Konstantin Isakov and ZBackup contributors, see CONTRIBUTORS // Part of ZBackup. Licensed under GNU GPLv2 or later + OpenSSL, see LICENSE #include diff --git a/compression.hh b/compression.hh index ab69623..6e8d2cd 100644 --- a/compression.hh +++ b/compression.hh @@ -1,4 +1,5 @@ // Copyright (c) 2013 Benjamin Koch +// Copyright (c) 2012-2014 Konstantin Isakov and ZBackup contributors, see CONTRIBUTORS // Part of ZBackup. Licensed under GNU GPLv2 or later + OpenSSL, see LICENSE #ifndef COMPRESSION_HH_INCLUDED__ diff --git a/debug.cc b/debug.cc index 200f333..409ca1b 100644 --- a/debug.cc +++ b/debug.cc @@ -1,3 +1,4 @@ +// Copyright (c) 2012-2014 Konstantin Isakov and ZBackup contributors, see CONTRIBUTORS // Part of ZBackup. Licensed under GNU GPLv2 or later + OpenSSL, see LICENSE bool verboseMode = true; diff --git a/debug.hh b/debug.hh index ca155be..bd80a9f 100644 --- a/debug.hh +++ b/debug.hh @@ -1,3 +1,4 @@ +// Copyright (c) 2012-2014 Konstantin Isakov and ZBackup contributors, see CONTRIBUTORS // Part of ZBackup. Licensed under GNU GPLv2 or later + OpenSSL, see LICENSE #ifndef DEBUG_HH_INCLUDED__ diff --git a/dir.cc b/dir.cc index 2f06c28..0741d04 100644 --- a/dir.cc +++ b/dir.cc @@ -1,3 +1,4 @@ +// Copyright (c) 2012-2014 Konstantin Isakov and ZBackup contributors, see CONTRIBUTORS // Part of ZBackup. Licensed under GNU GPLv2 or later + OpenSSL, see LICENSE #include diff --git a/dir.hh b/dir.hh index ee8f352..a07b15c 100644 --- a/dir.hh +++ b/dir.hh @@ -1,3 +1,4 @@ +// Copyright (c) 2012-2014 Konstantin Isakov and ZBackup contributors, see CONTRIBUTORS // Part of ZBackup. Licensed under GNU GPLv2 or later + OpenSSL, see LICENSE #ifndef DIR_HH_INCLUDED__ diff --git a/encrypted_file.cc b/encrypted_file.cc index 752f003..cfa4192 100644 --- a/encrypted_file.cc +++ b/encrypted_file.cc @@ -1,3 +1,4 @@ +// Copyright (c) 2012-2014 Konstantin Isakov and ZBackup contributors, see CONTRIBUTORS // Part of ZBackup. Licensed under GNU GPLv2 or later + OpenSSL, see LICENSE #include diff --git a/encrypted_file.hh b/encrypted_file.hh index 02966bf..1be5488 100644 --- a/encrypted_file.hh +++ b/encrypted_file.hh @@ -1,3 +1,4 @@ +// Copyright (c) 2012-2014 Konstantin Isakov and ZBackup contributors, see CONTRIBUTORS // Part of ZBackup. Licensed under GNU GPLv2 or later + OpenSSL, see LICENSE #ifndef ENCRYPTED_FILE_HH_INCLUDED__ diff --git a/encryption.cc b/encryption.cc index 6265472..8d05281 100644 --- a/encryption.cc +++ b/encryption.cc @@ -1,3 +1,4 @@ +// Copyright (c) 2012-2014 Konstantin Isakov and ZBackup contributors, see CONTRIBUTORS // Part of ZBackup. Licensed under GNU GPLv2 or later + OpenSSL, see LICENSE #include diff --git a/encryption.hh b/encryption.hh index 00bf4dd..6d8a384 100644 --- a/encryption.hh +++ b/encryption.hh @@ -1,3 +1,4 @@ +// Copyright (c) 2012-2014 Konstantin Isakov and ZBackup contributors, see CONTRIBUTORS // Part of ZBackup. Licensed under GNU GPLv2 or later + OpenSSL, see LICENSE #ifndef ENCRYPTION_HH_INCLUDED__ diff --git a/encryption_key.cc b/encryption_key.cc index e051bd2..59d0b2d 100644 --- a/encryption_key.cc +++ b/encryption_key.cc @@ -1,3 +1,4 @@ +// Copyright (c) 2012-2014 Konstantin Isakov and ZBackup contributors, see CONTRIBUTORS // Part of ZBackup. Licensed under GNU GPLv2 or later + OpenSSL, see LICENSE #include diff --git a/encryption_key.hh b/encryption_key.hh index 9a6625e..ed8fa6d 100644 --- a/encryption_key.hh +++ b/encryption_key.hh @@ -1,3 +1,4 @@ +// Copyright (c) 2012-2014 Konstantin Isakov and ZBackup contributors, see CONTRIBUTORS // Part of ZBackup. Licensed under GNU GPLv2 or later + OpenSSL, see LICENSE #ifndef ENCRYPTION_KEY_HH_INCLUDED__ diff --git a/endian.hh b/endian.hh index caae642..767d10b 100644 --- a/endian.hh +++ b/endian.hh @@ -1,3 +1,4 @@ +// Copyright (c) 2012-2014 Konstantin Isakov and ZBackup contributors, see CONTRIBUTORS // Part of ZBackup. Licensed under GNU GPLv2 or later + OpenSSL, see LICENSE #ifndef ENDIAN_HH_INCLUDED__ diff --git a/ex.hh b/ex.hh index 84f11b6..0c19daa 100644 --- a/ex.hh +++ b/ex.hh @@ -1,3 +1,4 @@ +// Copyright (c) 2012-2014 Konstantin Isakov and ZBackup contributors, see CONTRIBUTORS // Part of ZBackup. Licensed under GNU GPLv2 or later + OpenSSL, see LICENSE #ifndef EX_HH_INCLUDED__ diff --git a/file.cc b/file.cc index 119cca5..6dca3f7 100644 --- a/file.cc +++ b/file.cc @@ -1,3 +1,4 @@ +// Copyright (c) 2012-2014 Konstantin Isakov and ZBackup contributors, see CONTRIBUTORS // Part of ZBackup. Licensed under GNU GPLv2 or later + OpenSSL, see LICENSE #include diff --git a/file.hh b/file.hh index 22fdc05..eae5e33 100644 --- a/file.hh +++ b/file.hh @@ -1,3 +1,4 @@ +// Copyright (c) 2012-2014 Konstantin Isakov and ZBackup contributors, see CONTRIBUTORS // Part of ZBackup. Licensed under GNU GPLv2 or later + OpenSSL, see LICENSE #ifndef FILE_HH_INCLUDED__ diff --git a/hex.cc b/hex.cc index ce78ab9..df8b21f 100644 --- a/hex.cc +++ b/hex.cc @@ -1,3 +1,4 @@ +// Copyright (c) 2012-2014 Konstantin Isakov and ZBackup contributors, see CONTRIBUTORS // Part of ZBackup. Licensed under GNU GPLv2 or later + OpenSSL, see LICENSE #include "hex.hh" diff --git a/hex.hh b/hex.hh index 56c2014..bb189e7 100644 --- a/hex.hh +++ b/hex.hh @@ -1,3 +1,4 @@ +// Copyright (c) 2012-2014 Konstantin Isakov and ZBackup contributors, see CONTRIBUTORS // Part of ZBackup. Licensed under GNU GPLv2 or later + OpenSSL, see LICENSE #ifndef HEX_HH_INCLUDED__ diff --git a/index_file.cc b/index_file.cc index 9e70609..a55ab00 100644 --- a/index_file.cc +++ b/index_file.cc @@ -1,3 +1,4 @@ +// Copyright (c) 2012-2014 Konstantin Isakov and ZBackup contributors, see CONTRIBUTORS // Part of ZBackup. Licensed under GNU GPLv2 or later + OpenSSL, see LICENSE #include diff --git a/index_file.hh b/index_file.hh index 37cd9cb..f4de11d 100644 --- a/index_file.hh +++ b/index_file.hh @@ -1,3 +1,4 @@ +// Copyright (c) 2012-2014 Konstantin Isakov and ZBackup contributors, see CONTRIBUTORS // Part of ZBackup. Licensed under GNU GPLv2 or later + OpenSSL, see LICENSE #ifndef INDEX_FILE_HH_INCLUDED__ diff --git a/message.cc b/message.cc index 65043fe..2bb8b83 100644 --- a/message.cc +++ b/message.cc @@ -1,3 +1,4 @@ +// Copyright (c) 2012-2014 Konstantin Isakov and ZBackup contributors, see CONTRIBUTORS // Part of ZBackup. Licensed under GNU GPLv2 or later + OpenSSL, see LICENSE #include "message.hh" diff --git a/message.hh b/message.hh index 6cc377e..07ada2f 100644 --- a/message.hh +++ b/message.hh @@ -1,3 +1,4 @@ +// Copyright (c) 2012-2014 Konstantin Isakov and ZBackup contributors, see CONTRIBUTORS // Part of ZBackup. Licensed under GNU GPLv2 or later + OpenSSL, see LICENSE #ifndef MESSAGE_HH_INCLUDED__ diff --git a/mt.cc b/mt.cc index 8719544..da6bf64 100644 --- a/mt.cc +++ b/mt.cc @@ -1,3 +1,4 @@ +// Copyright (c) 2012-2014 Konstantin Isakov and ZBackup contributors, see CONTRIBUTORS // Part of ZBackup. Licensed under GNU GPLv2 or later + OpenSSL, see LICENSE #include "mt.hh" diff --git a/mt.hh b/mt.hh index 91d7474..7745134 100644 --- a/mt.hh +++ b/mt.hh @@ -1,3 +1,4 @@ +// Copyright (c) 2012-2014 Konstantin Isakov and ZBackup contributors, see CONTRIBUTORS // Part of ZBackup. Licensed under GNU GPLv2 or later + OpenSSL, see LICENSE #ifndef MT_HH_INCLUDED__ diff --git a/nocopy.hh b/nocopy.hh index 9300d19..1bc4a68 100644 --- a/nocopy.hh +++ b/nocopy.hh @@ -1,3 +1,4 @@ +// Copyright (c) 2012-2014 Konstantin Isakov and ZBackup contributors, see CONTRIBUTORS // Part of ZBackup. Licensed under GNU GPLv2 or later + OpenSSL, see LICENSE #ifndef NOCOPY_HH_INCLUDED__ diff --git a/objectcache.cc b/objectcache.cc index c029c83..dd00bc9 100644 --- a/objectcache.cc +++ b/objectcache.cc @@ -1,3 +1,4 @@ +// Copyright (c) 2012-2014 Konstantin Isakov and ZBackup contributors, see CONTRIBUTORS // Part of ZBackup. Licensed under GNU GPLv2 or later + OpenSSL, see LICENSE #include "objectcache.hh" diff --git a/objectcache.hh b/objectcache.hh index 2a5d186..5996a38 100644 --- a/objectcache.hh +++ b/objectcache.hh @@ -1,3 +1,4 @@ +// Copyright (c) 2012-2014 Konstantin Isakov and ZBackup contributors, see CONTRIBUTORS // Part of ZBackup. Licensed under GNU GPLv2 or later + OpenSSL, see LICENSE #ifndef OBJECTCACHE_HH_INCLUDED__ diff --git a/page_size.cc b/page_size.cc index 92e16fa..b8f1965 100644 --- a/page_size.cc +++ b/page_size.cc @@ -1,3 +1,4 @@ +// Copyright (c) 2012-2014 Konstantin Isakov and ZBackup contributors, see CONTRIBUTORS // Part of ZBackup. Licensed under GNU GPLv2 or later + OpenSSL, see LICENSE #include "page_size.hh" diff --git a/page_size.hh b/page_size.hh index 8114967..db2bb44 100644 --- a/page_size.hh +++ b/page_size.hh @@ -1,3 +1,4 @@ +// Copyright (c) 2012-2014 Konstantin Isakov and ZBackup contributors, see CONTRIBUTORS // Part of ZBackup. Licensed under GNU GPLv2 or later + OpenSSL, see LICENSE #ifndef PAGE_SIZE_HH_INCLUDED__ diff --git a/random.cc b/random.cc index af16105..c6d8ebd 100644 --- a/random.cc +++ b/random.cc @@ -1,3 +1,4 @@ +// Copyright (c) 2012-2014 Konstantin Isakov and ZBackup contributors, see CONTRIBUTORS // Part of ZBackup. Licensed under GNU GPLv2 or later + OpenSSL, see LICENSE #include "random.hh" diff --git a/random.hh b/random.hh index 4a11478..3040cb4 100644 --- a/random.hh +++ b/random.hh @@ -1,3 +1,4 @@ +// Copyright (c) 2012-2014 Konstantin Isakov and ZBackup contributors, see CONTRIBUTORS // Part of ZBackup. Licensed under GNU GPLv2 or later + OpenSSL, see LICENSE #ifndef RANDOM_HH_INCLUDED__ diff --git a/rolling_hash.cc b/rolling_hash.cc index e2bf6ac..aeacd61 100644 --- a/rolling_hash.cc +++ b/rolling_hash.cc @@ -1,3 +1,4 @@ +// Copyright (c) 2012-2014 Konstantin Isakov and ZBackup contributors, see CONTRIBUTORS // Part of ZBackup. Licensed under GNU GPLv2 or later + OpenSSL, see LICENSE #include "rolling_hash.hh" diff --git a/rolling_hash.hh b/rolling_hash.hh index 1be2147..a31c3ef 100644 --- a/rolling_hash.hh +++ b/rolling_hash.hh @@ -1,3 +1,4 @@ +// Copyright (c) 2012-2014 Konstantin Isakov and ZBackup contributors, see CONTRIBUTORS // Part of ZBackup. Licensed under GNU GPLv2 or later + OpenSSL, see LICENSE #ifndef ROLLING_HASH_HH_INCLUDED__ diff --git a/sha256.cc b/sha256.cc index 3cf8d19..4d219f3 100644 --- a/sha256.cc +++ b/sha256.cc @@ -1,3 +1,4 @@ +// Copyright (c) 2012-2014 Konstantin Isakov and ZBackup contributors, see CONTRIBUTORS // Part of ZBackup. Licensed under GNU GPLv2 or later + OpenSSL, see LICENSE #include "sha256.hh" diff --git a/sha256.hh b/sha256.hh index 3d5a3d0..ddcca69 100644 --- a/sha256.hh +++ b/sha256.hh @@ -1,3 +1,4 @@ +// Copyright (c) 2012-2014 Konstantin Isakov and ZBackup contributors, see CONTRIBUTORS // Part of ZBackup. Licensed under GNU GPLv2 or later + OpenSSL, see LICENSE #ifndef SHA256_HH_INCLUDED__ diff --git a/sptr.hh b/sptr.hh index 9d3a64f..1402f95 100644 --- a/sptr.hh +++ b/sptr.hh @@ -1,3 +1,4 @@ +// Copyright (c) 2012-2014 Konstantin Isakov and ZBackup contributors, see CONTRIBUTORS // Part of ZBackup. Licensed under GNU GPLv2 or later + OpenSSL, see LICENSE #ifndef SPTR_HH_INCLUDED__ diff --git a/static_assert.hh b/static_assert.hh index 7d85ef9..b479706 100644 --- a/static_assert.hh +++ b/static_assert.hh @@ -1,3 +1,4 @@ +// Copyright (c) 2012-2014 Konstantin Isakov and ZBackup contributors, see CONTRIBUTORS // Part of ZBackup. Licensed under GNU GPLv2 or later + OpenSSL, see LICENSE #ifndef STATIC_ASSERT_HH_INCLUDED__ diff --git a/storage_info_file.cc b/storage_info_file.cc index d257bbe..7ab2f22 100644 --- a/storage_info_file.cc +++ b/storage_info_file.cc @@ -1,3 +1,4 @@ +// Copyright (c) 2012-2014 Konstantin Isakov and ZBackup contributors, see CONTRIBUTORS // Part of ZBackup. Licensed under GNU GPLv2 or later + OpenSSL, see LICENSE #include diff --git a/storage_info_file.hh b/storage_info_file.hh index 84d9548..53758e0 100644 --- a/storage_info_file.hh +++ b/storage_info_file.hh @@ -1,3 +1,4 @@ +// Copyright (c) 2012-2014 Konstantin Isakov and ZBackup contributors, see CONTRIBUTORS // Part of ZBackup. Licensed under GNU GPLv2 or later + OpenSSL, see LICENSE #ifndef STORAGE_INFO_FILE_HH_INCLUDED__ diff --git a/tartool/CMakeLists.txt b/tartool/CMakeLists.txt index 5f730c7..6f72998 100644 --- a/tartool/CMakeLists.txt +++ b/tartool/CMakeLists.txt @@ -1,3 +1,4 @@ +# Copyright (c) 2012-2014 Konstantin Isakov and ZBackup contributors, see CONTRIBUTORS # Part of ZBackup. Licensed under GNU GPLv2 or later + OpenSSL, see LICENSE cmake_minimum_required( VERSION 2.6.0 ) diff --git a/tartool/tartool.cc b/tartool/tartool.cc index 2369aa1..c649424 100644 --- a/tartool/tartool.cc +++ b/tartool/tartool.cc @@ -1,3 +1,4 @@ +// Copyright (c) 2012-2014 Konstantin Isakov and ZBackup contributors, see CONTRIBUTORS // Part of ZBackup. Licensed under GNU GPLv2 or later + OpenSSL, see LICENSE #include diff --git a/tests/bundle/test_bundle.cc b/tests/bundle/test_bundle.cc index d286fa5..7c1140e 100644 --- a/tests/bundle/test_bundle.cc +++ b/tests/bundle/test_bundle.cc @@ -1,3 +1,4 @@ +// Copyright (c) 2012-2014 Konstantin Isakov and ZBackup contributors, see CONTRIBUTORS // Part of ZBackup. Licensed under GNU GPLv2 or later + OpenSSL, see LICENSE #include diff --git a/tests/encrypted_file/test_encrypted_file.cc b/tests/encrypted_file/test_encrypted_file.cc index 3dd72f0..3b15688 100644 --- a/tests/encrypted_file/test_encrypted_file.cc +++ b/tests/encrypted_file/test_encrypted_file.cc @@ -1,3 +1,4 @@ +// Copyright (c) 2012-2014 Konstantin Isakov and ZBackup contributors, see CONTRIBUTORS // Part of ZBackup. Licensed under GNU GPLv2 or later + OpenSSL, see LICENSE #include diff --git a/tests/rolling_hash/test_rolling_hash.cc b/tests/rolling_hash/test_rolling_hash.cc index 9981b27..9d74fb8 100644 --- a/tests/rolling_hash/test_rolling_hash.cc +++ b/tests/rolling_hash/test_rolling_hash.cc @@ -1,3 +1,4 @@ +// Copyright (c) 2012-2014 Konstantin Isakov and ZBackup contributors, see CONTRIBUTORS // Part of ZBackup. Licensed under GNU GPLv2 or later + OpenSSL, see LICENSE #include diff --git a/tmp_mgr.cc b/tmp_mgr.cc index f2c9d6c..4c41a25 100644 --- a/tmp_mgr.cc +++ b/tmp_mgr.cc @@ -1,3 +1,4 @@ +// Copyright (c) 2012-2014 Konstantin Isakov and ZBackup contributors, see CONTRIBUTORS // Part of ZBackup. Licensed under GNU GPLv2 or later + OpenSSL, see LICENSE #include "tmp_mgr.hh" diff --git a/tmp_mgr.hh b/tmp_mgr.hh index 6af63a0..c6496f8 100644 --- a/tmp_mgr.hh +++ b/tmp_mgr.hh @@ -1,3 +1,4 @@ +// Copyright (c) 2012-2014 Konstantin Isakov and ZBackup contributors, see CONTRIBUTORS // Part of ZBackup. Licensed under GNU GPLv2 or later + OpenSSL, see LICENSE #ifndef TMP_MGR_HH_INCLUDED__ diff --git a/unbuffered_file.cc b/unbuffered_file.cc index b0073ff..0816e4a 100644 --- a/unbuffered_file.cc +++ b/unbuffered_file.cc @@ -1,3 +1,4 @@ +// Copyright (c) 2012-2014 Konstantin Isakov and ZBackup contributors, see CONTRIBUTORS // Part of ZBackup. Licensed under GNU GPLv2 or later + OpenSSL, see LICENSE #define _LARGEFILE64_SOURCE diff --git a/unbuffered_file.hh b/unbuffered_file.hh index 462816c..e555f8a 100644 --- a/unbuffered_file.hh +++ b/unbuffered_file.hh @@ -1,3 +1,4 @@ +// Copyright (c) 2012-2014 Konstantin Isakov and ZBackup contributors, see CONTRIBUTORS // Part of ZBackup. Licensed under GNU GPLv2 or later + OpenSSL, see LICENSE #ifndef UNBUFFERED_FILE_HH_INCLUDED__ diff --git a/zbackup.cc b/zbackup.cc index 8bd006c..88ac71c 100644 --- a/zbackup.cc +++ b/zbackup.cc @@ -1,3 +1,4 @@ +// Copyright (c) 2012-2014 Konstantin Isakov and ZBackup contributors, see CONTRIBUTORS // Part of ZBackup. Licensed under GNU GPLv2 or later + OpenSSL, see LICENSE #include diff --git a/zbackup.hh b/zbackup.hh index 790cd02..3929a64 100644 --- a/zbackup.hh +++ b/zbackup.hh @@ -1,3 +1,4 @@ +// Copyright (c) 2012-2014 Konstantin Isakov and ZBackup contributors, see CONTRIBUTORS // Part of ZBackup. Licensed under GNU GPLv2 or later + OpenSSL, see LICENSE #ifndef ZBACKUP_HH_INCLUDED__ diff --git a/zbackup.proto b/zbackup.proto index 024b487..a52bea9 100644 --- a/zbackup.proto +++ b/zbackup.proto @@ -1,3 +1,4 @@ +// Copyright (c) 2012-2014 Konstantin Isakov and ZBackup contributors, see CONTRIBUTORS // Part of ZBackup. Licensed under GNU GPLv2 or later + OpenSSL, see LICENSE // Protobuffers used in zbackup diff --git a/zbackup_base.cc b/zbackup_base.cc index 996de6a..7d965d6 100644 --- a/zbackup_base.cc +++ b/zbackup_base.cc @@ -1,3 +1,4 @@ +// Copyright (c) 2012-2014 Konstantin Isakov and ZBackup contributors, see CONTRIBUTORS // Part of ZBackup. Licensed under GNU GPLv2 or later + OpenSSL, see LICENSE #include "zbackup_base.hh" diff --git a/zbackup_base.hh b/zbackup_base.hh index c11cf1c..65be004 100644 --- a/zbackup_base.hh +++ b/zbackup_base.hh @@ -1,3 +1,4 @@ +// Copyright (c) 2012-2014 Konstantin Isakov and ZBackup contributors, see CONTRIBUTORS // Part of ZBackup. Licensed under GNU GPLv2 or later + OpenSSL, see LICENSE #ifndef ZBACKUP_BASE_HH_INCLUDED__ diff --git a/zcollector.cc b/zcollector.cc index a365e31..b7fe74a 100644 --- a/zcollector.cc +++ b/zcollector.cc @@ -1,3 +1,4 @@ +// Copyright (c) 2012-2014 Konstantin Isakov and ZBackup contributors, see CONTRIBUTORS // Part of ZBackup. Licensed under GNU GPLv2 or later + OpenSSL, see LICENSE #include "zcollector.hh" diff --git a/zcollector.hh b/zcollector.hh index 8ca946e..1f38297 100644 --- a/zcollector.hh +++ b/zcollector.hh @@ -1,3 +1,4 @@ +// Copyright (c) 2012-2014 Konstantin Isakov and ZBackup contributors, see CONTRIBUTORS // Part of ZBackup. Licensed under GNU GPLv2 or later + OpenSSL, see LICENSE #ifndef Z_COLLECTOR_HH_INCLUDED__