summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authorDimitri Staessens <dimitri.staessens@ugent.be>2019-02-04 16:37:21 +0100
committerSander Vrijders <sander.vrijders@ugent.be>2019-02-05 09:58:08 +0100
commit5dd086aa679e3e05d20ef6a19f3fefbe46ffe40e (patch)
tree9883586231d7a5a1cd5fa89ecd6c3fa61cc61ba8 /src/lib
parent1301757fa9ec4a942d8a5815c7e79d9146a5ffd8 (diff)
downloadouroboros-5dd086aa679e3e05d20ef6a19f3fefbe46ffe40e.tar.gz
ouroboros-5dd086aa679e3e05d20ef6a19f3fefbe46ffe40e.zip
build: Update copyright to 2019
Updates the copyright notice in all sources to 2019. Signed-off-by: Dimitri Staessens <dimitri.staessens@ugent.be> Signed-off-by: Sander Vrijders <sander.vrijders@ugent.be>
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/bitmap.c2
-rw-r--r--src/lib/btree.c2
-rw-r--r--src/lib/cacep.c2
-rw-r--r--src/lib/cacep.proto2
-rw-r--r--src/lib/config.h.in2
-rw-r--r--src/lib/crc32.c2
-rw-r--r--src/lib/dev.c2
-rw-r--r--src/lib/frct.c2
-rw-r--r--src/lib/hash.c2
-rw-r--r--src/lib/hashtable.c2
-rw-r--r--src/lib/ipcp_config.proto2
-rw-r--r--src/lib/ipcpd_messages.proto2
-rw-r--r--src/lib/irm.c2
-rw-r--r--src/lib/irmd_messages.proto2
-rw-r--r--src/lib/list.c2
-rw-r--r--src/lib/lockfile.c2
-rw-r--r--src/lib/logs.c2
-rw-r--r--src/lib/md5.c2
-rw-r--r--src/lib/notifier.c2
-rw-r--r--src/lib/qoscube.c2
-rw-r--r--src/lib/qosspec.proto2
-rw-r--r--src/lib/random.c2
-rw-r--r--src/lib/rib.c2
-rw-r--r--src/lib/rxmwheel.c2
-rw-r--r--src/lib/sha3.c2
-rw-r--r--src/lib/shm_flow_set.c2
-rw-r--r--src/lib/shm_rbuff.c2
-rw-r--r--src/lib/shm_rbuff_ll.c2
-rw-r--r--src/lib/shm_rbuff_pthr.c2
-rw-r--r--src/lib/shm_rdrbuff.c2
-rw-r--r--src/lib/sockets.c2
-rw-r--r--src/lib/tests/bitmap_test.c2
-rw-r--r--src/lib/tests/btree_test.c2
-rw-r--r--src/lib/tests/crc32_test.c2
-rw-r--r--src/lib/tests/hashtable_test.c2
-rw-r--r--src/lib/tests/md5_test.c2
-rw-r--r--src/lib/tests/sha3_test.c2
-rw-r--r--src/lib/tests/time_utils_test.c2
-rw-r--r--src/lib/tpm.c2
-rw-r--r--src/lib/utils.c2
40 files changed, 40 insertions, 40 deletions
diff --git a/src/lib/bitmap.c b/src/lib/bitmap.c
index dfec08df..079426cd 100644
--- a/src/lib/bitmap.c
+++ b/src/lib/bitmap.c
@@ -1,5 +1,5 @@
/*
- * Ouroboros - Copyright (C) 2016 - 2018
+ * Ouroboros - Copyright (C) 2016 - 2019
*
* Bitmap implementation
*
diff --git a/src/lib/btree.c b/src/lib/btree.c
index 86763333..0b5a80d0 100644
--- a/src/lib/btree.c
+++ b/src/lib/btree.c
@@ -1,5 +1,5 @@
/*
- * Ouroboros - Copyright (C) 2016 - 2018
+ * Ouroboros - Copyright (C) 2016 - 2019
*
* B-trees
*
diff --git a/src/lib/cacep.c b/src/lib/cacep.c
index 12751078..e2e14b64 100644
--- a/src/lib/cacep.c
+++ b/src/lib/cacep.c
@@ -1,5 +1,5 @@
/*
- * Ouroboros - Copyright (C) 2016 - 2018
+ * Ouroboros - Copyright (C) 2016 - 2019
*
* The Common Application Connection Establishment Protocol
*
diff --git a/src/lib/cacep.proto b/src/lib/cacep.proto
index 16c7a38a..b9bfbf60 100644
--- a/src/lib/cacep.proto
+++ b/src/lib/cacep.proto
@@ -1,5 +1,5 @@
/*
- * Ouroboros - Copyright (C) 2016 - 2018
+ * Ouroboros - Copyright (C) 2016 - 2019
*
* Message for Connection Information in CACEP
*
diff --git a/src/lib/config.h.in b/src/lib/config.h.in
index e8cfeba3..cc0845d3 100644
--- a/src/lib/config.h.in
+++ b/src/lib/config.h.in
@@ -1,5 +1,5 @@
/*
- * Ouroboros - Copyright (C) 2016 - 2018
+ * Ouroboros - Copyright (C) 2016 - 2019
*
* Ouroboros library configuration
*
diff --git a/src/lib/crc32.c b/src/lib/crc32.c
index 04e8d20d..f7010faa 100644
--- a/src/lib/crc32.c
+++ b/src/lib/crc32.c
@@ -1,5 +1,5 @@
/*
- * Ouroboros - Copyright (C) 2016 - 2018
+ * Ouroboros - Copyright (C) 2016 - 2019
*
* 32-bit Cyclic Redundancy Check
*
diff --git a/src/lib/dev.c b/src/lib/dev.c
index 50b12b43..297c85f7 100644
--- a/src/lib/dev.c
+++ b/src/lib/dev.c
@@ -1,5 +1,5 @@
/*
- * Ouroboros - Copyright (C) 2016 - 2018
+ * Ouroboros - Copyright (C) 2016 - 2019
*
* API for applications
*
diff --git a/src/lib/frct.c b/src/lib/frct.c
index b56b1e3d..02c101c8 100644
--- a/src/lib/frct.c
+++ b/src/lib/frct.c
@@ -1,5 +1,5 @@
/*
- * Ouroboros - Copyright (C) 2016 - 2018
+ * Ouroboros - Copyright (C) 2016 - 2019
*
* Flow and Retransmission Control
*
diff --git a/src/lib/hash.c b/src/lib/hash.c
index 10e10c13..44197a31 100644
--- a/src/lib/hash.c
+++ b/src/lib/hash.c
@@ -1,5 +1,5 @@
/*
- * Ouroboros - Copyright (C) 2016 - 2018
+ * Ouroboros - Copyright (C) 2016 - 2019
*
* Hashing
*
diff --git a/src/lib/hashtable.c b/src/lib/hashtable.c
index 68a0f545..9bf9a886 100644
--- a/src/lib/hashtable.c
+++ b/src/lib/hashtable.c
@@ -1,5 +1,5 @@
/*
- * Ouroboros - Copyright (C) 2016 - 2018
+ * Ouroboros - Copyright (C) 2016 - 2019
*
* Hash table with separate chaining on collisions
*
diff --git a/src/lib/ipcp_config.proto b/src/lib/ipcp_config.proto
index 44391f36..f54e78a0 100644
--- a/src/lib/ipcp_config.proto
+++ b/src/lib/ipcp_config.proto
@@ -1,5 +1,5 @@
/*
- * Ouroboros - Copyright (C) 2016 - 2018
+ * Ouroboros - Copyright (C) 2016 - 2019
*
* Layer configuration message
*
diff --git a/src/lib/ipcpd_messages.proto b/src/lib/ipcpd_messages.proto
index 1793aee7..779d3637 100644
--- a/src/lib/ipcpd_messages.proto
+++ b/src/lib/ipcpd_messages.proto
@@ -1,5 +1,5 @@
/*
- * Ouroboros - Copyright (C) 2016 - 2018
+ * Ouroboros - Copyright (C) 2016 - 2019
*
* IPCPd message
*
diff --git a/src/lib/irm.c b/src/lib/irm.c
index dcc315d2..28864546 100644
--- a/src/lib/irm.c
+++ b/src/lib/irm.c
@@ -1,5 +1,5 @@
/*
- * Ouroboros - Copyright (C) 2016 - 2018
+ * Ouroboros - Copyright (C) 2016 - 2019
*
* The API to instruct the IRM
*
diff --git a/src/lib/irmd_messages.proto b/src/lib/irmd_messages.proto
index 9b935f57..ba18ddf7 100644
--- a/src/lib/irmd_messages.proto
+++ b/src/lib/irmd_messages.proto
@@ -1,5 +1,5 @@
/*
- * Ouroboros - Copyright (C) 2016 - 2018
+ * Ouroboros - Copyright (C) 2016 - 2019
*
* IRMd message
*
diff --git a/src/lib/list.c b/src/lib/list.c
index c68bbe11..83373300 100644
--- a/src/lib/list.c
+++ b/src/lib/list.c
@@ -1,5 +1,5 @@
/*
- * Ouroboros - Copyright (C) 2016 - 2018
+ * Ouroboros - Copyright (C) 2016 - 2019
*
* Simple doubly linked list implementation.
*
diff --git a/src/lib/lockfile.c b/src/lib/lockfile.c
index b5c3361c..b052ac5a 100644
--- a/src/lib/lockfile.c
+++ b/src/lib/lockfile.c
@@ -1,5 +1,5 @@
/*
- * Ouroboros - Copyright (C) 2016 - 2018
+ * Ouroboros - Copyright (C) 2016 - 2019
*
* Lockfile for Ouroboros
*
diff --git a/src/lib/logs.c b/src/lib/logs.c
index eb2c72f1..be082a26 100644
--- a/src/lib/logs.c
+++ b/src/lib/logs.c
@@ -1,5 +1,5 @@
/*
- * Ouroboros - Copyright (C) 2016 - 2018
+ * Ouroboros - Copyright (C) 2016 - 2019
*
* Logging facilities
*
diff --git a/src/lib/md5.c b/src/lib/md5.c
index 959865fe..cfb44054 100644
--- a/src/lib/md5.c
+++ b/src/lib/md5.c
@@ -1,5 +1,5 @@
/*
- * Ouroboros - Copyright (C) 2016 - 2018
+ * Ouroboros - Copyright (C) 2016 - 2019
*
* MD5 algorithm
*
diff --git a/src/lib/notifier.c b/src/lib/notifier.c
index 4f77f2e3..504fc602 100644
--- a/src/lib/notifier.c
+++ b/src/lib/notifier.c
@@ -1,5 +1,5 @@
/*
- * Ouroboros - Copyright (C) 2016 - 2018
+ * Ouroboros - Copyright (C) 2016 - 2019
*
* Notifier event system using callbacks
*
diff --git a/src/lib/qoscube.c b/src/lib/qoscube.c
index efca0e42..d5ed5d79 100644
--- a/src/lib/qoscube.c
+++ b/src/lib/qoscube.c
@@ -1,5 +1,5 @@
/*
- * Ouroboros - Copyright (C) 2016 - 2018
+ * Ouroboros - Copyright (C) 2016 - 2019
*
* Quality of Service cube
*
diff --git a/src/lib/qosspec.proto b/src/lib/qosspec.proto
index f355e345..c9e5a6e6 100644
--- a/src/lib/qosspec.proto
+++ b/src/lib/qosspec.proto
@@ -1,5 +1,5 @@
/*
- * Ouroboros - Copyright (C) 2016 - 2018
+ * Ouroboros - Copyright (C) 2016 - 2019
*
* QoS specification message
*
diff --git a/src/lib/random.c b/src/lib/random.c
index 78242f9d..3751668e 100644
--- a/src/lib/random.c
+++ b/src/lib/random.c
@@ -1,5 +1,5 @@
/*
- * Ouroboros - Copyright (C) 2016 - 2018
+ * Ouroboros - Copyright (C) 2016 - 2019
*
* Pseudo random generator
*
diff --git a/src/lib/rib.c b/src/lib/rib.c
index 88db9ed8..63ddca6e 100644
--- a/src/lib/rib.c
+++ b/src/lib/rib.c
@@ -1,5 +1,5 @@
/*
- * Ouroboros - Copyright (C) 2016 - 2018
+ * Ouroboros - Copyright (C) 2016 - 2019
*
* RIB export using FUSE
*
diff --git a/src/lib/rxmwheel.c b/src/lib/rxmwheel.c
index c75aaab3..395a5d8f 100644
--- a/src/lib/rxmwheel.c
+++ b/src/lib/rxmwheel.c
@@ -1,5 +1,5 @@
/*
- * Ouroboros - Copyright (C) 2016 - 2018
+ * Ouroboros - Copyright (C) 2016 - 2019
*
* Timerwheel
*
diff --git a/src/lib/sha3.c b/src/lib/sha3.c
index f6a82c57..4e8fe92d 100644
--- a/src/lib/sha3.c
+++ b/src/lib/sha3.c
@@ -1,5 +1,5 @@
/*
- * Ouroboros - Copyright (C) 2016 - 2018
+ * Ouroboros - Copyright (C) 2016 - 2019
*
* SHA3 algorithm
*
diff --git a/src/lib/shm_flow_set.c b/src/lib/shm_flow_set.c
index bab5d86e..f1182a4d 100644
--- a/src/lib/shm_flow_set.c
+++ b/src/lib/shm_flow_set.c
@@ -1,5 +1,5 @@
/*
- * Ouroboros - Copyright (C) 2016 - 2018
+ * Ouroboros - Copyright (C) 2016 - 2019
*
* Management of flow_sets for fqueue
*
diff --git a/src/lib/shm_rbuff.c b/src/lib/shm_rbuff.c
index a6eab699..f7f383fc 100644
--- a/src/lib/shm_rbuff.c
+++ b/src/lib/shm_rbuff.c
@@ -1,5 +1,5 @@
/*
- * Ouroboros - Copyright (C) 2016 - 2018
+ * Ouroboros - Copyright (C) 2016 - 2019
*
* Ring buffer implementations for incoming packets
*
diff --git a/src/lib/shm_rbuff_ll.c b/src/lib/shm_rbuff_ll.c
index 0fc9ae7b..6146f178 100644
--- a/src/lib/shm_rbuff_ll.c
+++ b/src/lib/shm_rbuff_ll.c
@@ -1,5 +1,5 @@
/*
- * Ouroboros - Copyright (C) 2016 - 2018
+ * Ouroboros - Copyright (C) 2016 - 2019
*
* Lockless ring buffer for incoming packets
*
diff --git a/src/lib/shm_rbuff_pthr.c b/src/lib/shm_rbuff_pthr.c
index 51d801f6..b4134bf6 100644
--- a/src/lib/shm_rbuff_pthr.c
+++ b/src/lib/shm_rbuff_pthr.c
@@ -1,5 +1,5 @@
/*
- * Ouroboros - Copyright (C) 2016 - 2018
+ * Ouroboros - Copyright (C) 2016 - 2019
*
* Ring buffer for incoming packets
*
diff --git a/src/lib/shm_rdrbuff.c b/src/lib/shm_rdrbuff.c
index 0d3faf17..72ad5828 100644
--- a/src/lib/shm_rdrbuff.c
+++ b/src/lib/shm_rdrbuff.c
@@ -1,5 +1,5 @@
/*
- * Ouroboros - Copyright (C) 2016 - 2018
+ * Ouroboros - Copyright (C) 2016 - 2019
*
* Random Deletion Ring Buffer for Data Units
*
diff --git a/src/lib/sockets.c b/src/lib/sockets.c
index 85726783..b08bae8e 100644
--- a/src/lib/sockets.c
+++ b/src/lib/sockets.c
@@ -1,5 +1,5 @@
/*
- * Ouroboros - Copyright (C) 2016 - 2018
+ * Ouroboros - Copyright (C) 2016 - 2019
*
* The sockets layer to communicate between daemons
*
diff --git a/src/lib/tests/bitmap_test.c b/src/lib/tests/bitmap_test.c
index 619d065c..491b77f1 100644
--- a/src/lib/tests/bitmap_test.c
+++ b/src/lib/tests/bitmap_test.c
@@ -1,5 +1,5 @@
/*
- * Ouroboros - Copyright (C) 2016 - 2018
+ * Ouroboros - Copyright (C) 2016 - 2019
*
* Test of the bitmap
*
diff --git a/src/lib/tests/btree_test.c b/src/lib/tests/btree_test.c
index bd4390c7..cfb937b8 100644
--- a/src/lib/tests/btree_test.c
+++ b/src/lib/tests/btree_test.c
@@ -1,5 +1,5 @@
/*
- * Ouroboros - Copyright (C) 2016 - 2018
+ * Ouroboros - Copyright (C) 2016 - 2019
*
* Test of the B-tree implementation
*
diff --git a/src/lib/tests/crc32_test.c b/src/lib/tests/crc32_test.c
index df980d3f..90a9edcf 100644
--- a/src/lib/tests/crc32_test.c
+++ b/src/lib/tests/crc32_test.c
@@ -1,5 +1,5 @@
/*
- * Ouroboros - Copyright (C) 2016 - 2018
+ * Ouroboros - Copyright (C) 2016 - 2019
*
* Test of the CRC32 function
*
diff --git a/src/lib/tests/hashtable_test.c b/src/lib/tests/hashtable_test.c
index e3127743..e915004e 100644
--- a/src/lib/tests/hashtable_test.c
+++ b/src/lib/tests/hashtable_test.c
@@ -1,5 +1,5 @@
/*
- * Ouroboros - Copyright (C) 2016 - 2018
+ * Ouroboros - Copyright (C) 2016 - 2019
*
* Test of the hash table
*
diff --git a/src/lib/tests/md5_test.c b/src/lib/tests/md5_test.c
index a7cdd8ec..c8518bcd 100644
--- a/src/lib/tests/md5_test.c
+++ b/src/lib/tests/md5_test.c
@@ -1,5 +1,5 @@
/*
- * Ouroboros - Copyright (C) 2016 - 2018
+ * Ouroboros - Copyright (C) 2016 - 2019
*
* Test of the MD5 function
*
diff --git a/src/lib/tests/sha3_test.c b/src/lib/tests/sha3_test.c
index edf3b0e0..18c820e3 100644
--- a/src/lib/tests/sha3_test.c
+++ b/src/lib/tests/sha3_test.c
@@ -1,5 +1,5 @@
/*
- * Ouroboros - Copyright (C) 2016 - 2018
+ * Ouroboros - Copyright (C) 2016 - 2019
*
* Test of the SHA3 function
*
diff --git a/src/lib/tests/time_utils_test.c b/src/lib/tests/time_utils_test.c
index aacf3ba8..bd60410a 100644
--- a/src/lib/tests/time_utils_test.c
+++ b/src/lib/tests/time_utils_test.c
@@ -1,5 +1,5 @@
/*
- * Ouroboros - Copyright (C) 2016 - 2018
+ * Ouroboros - Copyright (C) 2016 - 2019
*
* Test of the time utilities
*
diff --git a/src/lib/tpm.c b/src/lib/tpm.c
index ec2b8a90..a39e9e4f 100644
--- a/src/lib/tpm.c
+++ b/src/lib/tpm.c
@@ -1,5 +1,5 @@
/*
- * Ouroboros - Copyright (C) 2016 - 2018
+ * Ouroboros - Copyright (C) 2016 - 2019
*
* Threadpool management
*
diff --git a/src/lib/utils.c b/src/lib/utils.c
index 7c59f09c..7106f79f 100644
--- a/src/lib/utils.c
+++ b/src/lib/utils.c
@@ -1,5 +1,5 @@
/*
- * Ouroboros - Copyright (C) 2016 - 2018
+ * Ouroboros - Copyright (C) 2016 - 2019
*
* Handy utilities
*