From 435a91165a3c1f8ca715b22ee2c2361d9bd853dd Mon Sep 17 00:00:00 2001 From: Dimitri Staessens Date: Wed, 1 Jan 2020 09:48:07 +0100 Subject: build: Update copyright to 2020 Signed-off-by: Dimitri Staessens Signed-off-by: Sander Vrijders --- src/ipcpd/unicast/addr_auth.c | 2 +- src/ipcpd/unicast/addr_auth.h | 2 +- src/ipcpd/unicast/comp.h | 2 +- src/ipcpd/unicast/connmgr.c | 2 +- src/ipcpd/unicast/connmgr.h | 2 +- src/ipcpd/unicast/dht.c | 2 +- src/ipcpd/unicast/dht.h | 2 +- src/ipcpd/unicast/dir.c | 2 +- src/ipcpd/unicast/dir.h | 2 +- src/ipcpd/unicast/dt.c | 2 +- src/ipcpd/unicast/dt.h | 2 +- src/ipcpd/unicast/enroll.c | 2 +- src/ipcpd/unicast/enroll.h | 2 +- src/ipcpd/unicast/fa.c | 2 +- src/ipcpd/unicast/fa.h | 2 +- src/ipcpd/unicast/kademlia.proto | 2 +- src/ipcpd/unicast/main.c | 2 +- src/ipcpd/unicast/pff.c | 2 +- src/ipcpd/unicast/pff.h | 2 +- src/ipcpd/unicast/pol-addr-auth-ops.h | 2 +- src/ipcpd/unicast/pol-pff-ops.h | 2 +- src/ipcpd/unicast/pol-routing-ops.h | 2 +- src/ipcpd/unicast/pol/alternate_pff.c | 2 +- src/ipcpd/unicast/pol/alternate_pff.h | 2 +- src/ipcpd/unicast/pol/flat.c | 2 +- src/ipcpd/unicast/pol/flat.h | 2 +- src/ipcpd/unicast/pol/graph.c | 2 +- src/ipcpd/unicast/pol/graph.h | 2 +- src/ipcpd/unicast/pol/link_state.c | 2 +- src/ipcpd/unicast/pol/link_state.h | 2 +- src/ipcpd/unicast/pol/simple_pff.c | 2 +- src/ipcpd/unicast/pol/simple_pff.h | 2 +- src/ipcpd/unicast/pol/tests/graph_test.c | 2 +- src/ipcpd/unicast/psched.c | 2 +- src/ipcpd/unicast/psched.h | 2 +- src/ipcpd/unicast/routing.c | 2 +- src/ipcpd/unicast/routing.h | 2 +- src/ipcpd/unicast/tests/dht_test.c | 2 +- 38 files changed, 38 insertions(+), 38 deletions(-) (limited to 'src/ipcpd/unicast') diff --git a/src/ipcpd/unicast/addr_auth.c b/src/ipcpd/unicast/addr_auth.c index 50c56055..e82ea254 100644 --- a/src/ipcpd/unicast/addr_auth.c +++ b/src/ipcpd/unicast/addr_auth.c @@ -1,5 +1,5 @@ /* - * Ouroboros - Copyright (C) 2016 - 2019 + * Ouroboros - Copyright (C) 2016 - 2020 * * Address authority * diff --git a/src/ipcpd/unicast/addr_auth.h b/src/ipcpd/unicast/addr_auth.h index cf1509ab..6bedf420 100644 --- a/src/ipcpd/unicast/addr_auth.h +++ b/src/ipcpd/unicast/addr_auth.h @@ -1,5 +1,5 @@ /* - * Ouroboros - Copyright (C) 2016 - 2019 + * Ouroboros - Copyright (C) 2016 - 2020 * * Address authority * diff --git a/src/ipcpd/unicast/comp.h b/src/ipcpd/unicast/comp.h index b8294c3b..42367833 100644 --- a/src/ipcpd/unicast/comp.h +++ b/src/ipcpd/unicast/comp.h @@ -1,5 +1,5 @@ /* - * Ouroboros - Copyright (C) 2016 - 2019 + * Ouroboros - Copyright (C) 2016 - 2020 * * Components for the unicast IPC process * diff --git a/src/ipcpd/unicast/connmgr.c b/src/ipcpd/unicast/connmgr.c index 7c1280c3..3ebef7f9 100644 --- a/src/ipcpd/unicast/connmgr.c +++ b/src/ipcpd/unicast/connmgr.c @@ -1,5 +1,5 @@ /* - * Ouroboros - Copyright (C) 2016 - 2019 + * Ouroboros - Copyright (C) 2016 - 2020 * * Handles connections between components * diff --git a/src/ipcpd/unicast/connmgr.h b/src/ipcpd/unicast/connmgr.h index 44a3fe39..17f78245 100644 --- a/src/ipcpd/unicast/connmgr.h +++ b/src/ipcpd/unicast/connmgr.h @@ -1,5 +1,5 @@ /* - * Ouroboros - Copyright (C) 2016 - 2019 + * Ouroboros - Copyright (C) 2016 - 2020 * * Handles the different AP connections * diff --git a/src/ipcpd/unicast/dht.c b/src/ipcpd/unicast/dht.c index f24a2c51..8555312e 100644 --- a/src/ipcpd/unicast/dht.c +++ b/src/ipcpd/unicast/dht.c @@ -1,5 +1,5 @@ /* - * Ouroboros - Copyright (C) 2016 - 2019 + * Ouroboros - Copyright (C) 2016 - 2020 * * Distributed Hash Table based on Kademlia * diff --git a/src/ipcpd/unicast/dht.h b/src/ipcpd/unicast/dht.h index 7d7601f5..39dfc07e 100644 --- a/src/ipcpd/unicast/dht.h +++ b/src/ipcpd/unicast/dht.h @@ -1,5 +1,5 @@ /* - * Ouroboros - Copyright (C) 2016 - 2019 + * Ouroboros - Copyright (C) 2016 - 2020 * * Distributed Hash Table based on Kademlia * diff --git a/src/ipcpd/unicast/dir.c b/src/ipcpd/unicast/dir.c index 3b0446fa..43ee94f0 100644 --- a/src/ipcpd/unicast/dir.c +++ b/src/ipcpd/unicast/dir.c @@ -1,5 +1,5 @@ /* - * Ouroboros - Copyright (C) 2016 - 2019 + * Ouroboros - Copyright (C) 2016 - 2020 * * Directory * diff --git a/src/ipcpd/unicast/dir.h b/src/ipcpd/unicast/dir.h index 8aba8b1d..1b67a08c 100644 --- a/src/ipcpd/unicast/dir.h +++ b/src/ipcpd/unicast/dir.h @@ -1,5 +1,5 @@ /* - * Ouroboros - Copyright (C) 2016 - 2019 + * Ouroboros - Copyright (C) 2016 - 2020 * * Directory * diff --git a/src/ipcpd/unicast/dt.c b/src/ipcpd/unicast/dt.c index 2fd3c060..cabc159d 100644 --- a/src/ipcpd/unicast/dt.c +++ b/src/ipcpd/unicast/dt.c @@ -1,5 +1,5 @@ /* - * Ouroboros - Copyright (C) 2016 - 2019 + * Ouroboros - Copyright (C) 2016 - 2020 * * Data Transfer Component * diff --git a/src/ipcpd/unicast/dt.h b/src/ipcpd/unicast/dt.h index 5f2ee1a5..15a7b660 100644 --- a/src/ipcpd/unicast/dt.h +++ b/src/ipcpd/unicast/dt.h @@ -1,5 +1,5 @@ /* - * Ouroboros - Copyright (C) 2016 - 2019 + * Ouroboros - Copyright (C) 2016 - 2020 * * Data Transfer component * diff --git a/src/ipcpd/unicast/enroll.c b/src/ipcpd/unicast/enroll.c index b572f89d..582e808f 100644 --- a/src/ipcpd/unicast/enroll.c +++ b/src/ipcpd/unicast/enroll.c @@ -1,5 +1,5 @@ /* - * Ouroboros - Copyright (C) 2016 - 2019 + * Ouroboros - Copyright (C) 2016 - 2020 * * Enrollment Task * diff --git a/src/ipcpd/unicast/enroll.h b/src/ipcpd/unicast/enroll.h index 0a1ce5fc..804f5d5b 100644 --- a/src/ipcpd/unicast/enroll.h +++ b/src/ipcpd/unicast/enroll.h @@ -1,5 +1,5 @@ /* - * Ouroboros - Copyright (C) 2016 - 2019 + * Ouroboros - Copyright (C) 2016 - 2020 * * Enrollment Task * diff --git a/src/ipcpd/unicast/fa.c b/src/ipcpd/unicast/fa.c index c1cb065f..9ed9f710 100644 --- a/src/ipcpd/unicast/fa.c +++ b/src/ipcpd/unicast/fa.c @@ -1,5 +1,5 @@ /* - * Ouroboros - Copyright (C) 2016 - 2019 + * Ouroboros - Copyright (C) 2016 - 2020 * * Flow allocator of the IPC Process * diff --git a/src/ipcpd/unicast/fa.h b/src/ipcpd/unicast/fa.h index ea055ec2..8ced5e84 100644 --- a/src/ipcpd/unicast/fa.h +++ b/src/ipcpd/unicast/fa.h @@ -1,5 +1,5 @@ /* - * Ouroboros - Copyright (C) 2016 - 2019 + * Ouroboros - Copyright (C) 2016 - 2020 * * Flow allocator of the IPC Process * diff --git a/src/ipcpd/unicast/kademlia.proto b/src/ipcpd/unicast/kademlia.proto index 6bd78b38..4f807fd3 100644 --- a/src/ipcpd/unicast/kademlia.proto +++ b/src/ipcpd/unicast/kademlia.proto @@ -1,5 +1,5 @@ /* - * Ouroboros - Copyright (C) 2016 - 2019 + * Ouroboros - Copyright (C) 2016 - 2020 * * KAD protocol * diff --git a/src/ipcpd/unicast/main.c b/src/ipcpd/unicast/main.c index c159b26d..33295e29 100644 --- a/src/ipcpd/unicast/main.c +++ b/src/ipcpd/unicast/main.c @@ -1,5 +1,5 @@ /* - * Ouroboros - Copyright (C) 2016 - 2019 + * Ouroboros - Copyright (C) 2016 - 2020 * * Unicast IPC Process * diff --git a/src/ipcpd/unicast/pff.c b/src/ipcpd/unicast/pff.c index 5b1fa429..4e380e05 100644 --- a/src/ipcpd/unicast/pff.c +++ b/src/ipcpd/unicast/pff.c @@ -1,5 +1,5 @@ /* - * Ouroboros - Copyright (C) 2016 - 2019 + * Ouroboros - Copyright (C) 2016 - 2020 * * PDU Forwarding Function * diff --git a/src/ipcpd/unicast/pff.h b/src/ipcpd/unicast/pff.h index 9533395f..d88ffa7f 100644 --- a/src/ipcpd/unicast/pff.h +++ b/src/ipcpd/unicast/pff.h @@ -1,5 +1,5 @@ /* - * Ouroboros - Copyright (C) 2016 - 2019 + * Ouroboros - Copyright (C) 2016 - 2020 * * PDU Forwarding Function * diff --git a/src/ipcpd/unicast/pol-addr-auth-ops.h b/src/ipcpd/unicast/pol-addr-auth-ops.h index 7b1a4514..1096eecb 100644 --- a/src/ipcpd/unicast/pol-addr-auth-ops.h +++ b/src/ipcpd/unicast/pol-addr-auth-ops.h @@ -1,5 +1,5 @@ /* - * Ouroboros - Copyright (C) 2016 - 2019 + * Ouroboros - Copyright (C) 2016 - 2020 * * Address authority policy ops * diff --git a/src/ipcpd/unicast/pol-pff-ops.h b/src/ipcpd/unicast/pol-pff-ops.h index 766bb5b8..9e126cb5 100644 --- a/src/ipcpd/unicast/pol-pff-ops.h +++ b/src/ipcpd/unicast/pol-pff-ops.h @@ -1,5 +1,5 @@ /* - * Ouroboros - Copyright (C) 2016 - 2019 + * Ouroboros - Copyright (C) 2016 - 2020 * * Pff policy ops * diff --git a/src/ipcpd/unicast/pol-routing-ops.h b/src/ipcpd/unicast/pol-routing-ops.h index ae8e632d..3fa1d573 100644 --- a/src/ipcpd/unicast/pol-routing-ops.h +++ b/src/ipcpd/unicast/pol-routing-ops.h @@ -1,5 +1,5 @@ /* - * Ouroboros - Copyright (C) 2016 - 2019 + * Ouroboros - Copyright (C) 2016 - 2020 * * Routing policy ops * diff --git a/src/ipcpd/unicast/pol/alternate_pff.c b/src/ipcpd/unicast/pol/alternate_pff.c index 38937297..131bc2d7 100644 --- a/src/ipcpd/unicast/pol/alternate_pff.c +++ b/src/ipcpd/unicast/pol/alternate_pff.c @@ -1,5 +1,5 @@ /* - * Ouroboros - Copyright (C) 2016 - 2019 + * Ouroboros - Copyright (C) 2016 - 2020 * * Policy for PFF with alternate next hops * diff --git a/src/ipcpd/unicast/pol/alternate_pff.h b/src/ipcpd/unicast/pol/alternate_pff.h index 7bdf26de..5e5fca3d 100644 --- a/src/ipcpd/unicast/pol/alternate_pff.h +++ b/src/ipcpd/unicast/pol/alternate_pff.h @@ -1,5 +1,5 @@ /* - * Ouroboros - Copyright (C) 2016 - 2019 + * Ouroboros - Copyright (C) 2016 - 2020 * * Policy for PFF with alternate next hops * diff --git a/src/ipcpd/unicast/pol/flat.c b/src/ipcpd/unicast/pol/flat.c index 157885f9..6e5c96ab 100644 --- a/src/ipcpd/unicast/pol/flat.c +++ b/src/ipcpd/unicast/pol/flat.c @@ -1,5 +1,5 @@ /* - * Ouroboros - Copyright (C) 2016 - 2019 + * Ouroboros - Copyright (C) 2016 - 2020 * * Policy for flat addresses in a distributed way * diff --git a/src/ipcpd/unicast/pol/flat.h b/src/ipcpd/unicast/pol/flat.h index 64aa9ce0..54460bb3 100644 --- a/src/ipcpd/unicast/pol/flat.h +++ b/src/ipcpd/unicast/pol/flat.h @@ -1,5 +1,5 @@ /* - * Ouroboros - Copyright (C) 2016 - 2019 + * Ouroboros - Copyright (C) 2016 - 2020 * * Policy for flat addresses in a distributed way * diff --git a/src/ipcpd/unicast/pol/graph.c b/src/ipcpd/unicast/pol/graph.c index 499dc2de..379d6b95 100644 --- a/src/ipcpd/unicast/pol/graph.c +++ b/src/ipcpd/unicast/pol/graph.c @@ -1,5 +1,5 @@ /* - * Ouroboros - Copyright (C) 2016 - 2019 + * Ouroboros - Copyright (C) 2016 - 2020 * * Undirected graph structure * diff --git a/src/ipcpd/unicast/pol/graph.h b/src/ipcpd/unicast/pol/graph.h index 06a2bd0d..b6a9e891 100644 --- a/src/ipcpd/unicast/pol/graph.h +++ b/src/ipcpd/unicast/pol/graph.h @@ -1,5 +1,5 @@ /* - * Ouroboros - Copyright (C) 2016 - 2019 + * Ouroboros - Copyright (C) 2016 - 2020 * * Undirected graph structure * diff --git a/src/ipcpd/unicast/pol/link_state.c b/src/ipcpd/unicast/pol/link_state.c index d8f0e263..4ddebd51 100644 --- a/src/ipcpd/unicast/pol/link_state.c +++ b/src/ipcpd/unicast/pol/link_state.c @@ -1,5 +1,5 @@ /* - * Ouroboros - Copyright (C) 2016 - 2019 + * Ouroboros - Copyright (C) 2016 - 2020 * * Link state routing policy * diff --git a/src/ipcpd/unicast/pol/link_state.h b/src/ipcpd/unicast/pol/link_state.h index a7b44b4e..9d4858e1 100644 --- a/src/ipcpd/unicast/pol/link_state.h +++ b/src/ipcpd/unicast/pol/link_state.h @@ -1,5 +1,5 @@ /* - * Ouroboros - Copyright (C) 2016 - 2019 + * Ouroboros - Copyright (C) 2016 - 2020 * * Link state routing policy * diff --git a/src/ipcpd/unicast/pol/simple_pff.c b/src/ipcpd/unicast/pol/simple_pff.c index 4338c53c..c34a4fdc 100644 --- a/src/ipcpd/unicast/pol/simple_pff.c +++ b/src/ipcpd/unicast/pol/simple_pff.c @@ -1,5 +1,5 @@ /* - * Ouroboros - Copyright (C) 2016 - 2019 + * Ouroboros - Copyright (C) 2016 - 2020 * * Simple PDU Forwarding Function * diff --git a/src/ipcpd/unicast/pol/simple_pff.h b/src/ipcpd/unicast/pol/simple_pff.h index 02c09a58..2dfce45c 100644 --- a/src/ipcpd/unicast/pol/simple_pff.h +++ b/src/ipcpd/unicast/pol/simple_pff.h @@ -1,5 +1,5 @@ /* - * Ouroboros - Copyright (C) 2016 - 2019 + * Ouroboros - Copyright (C) 2016 - 2020 * * Simple policy for PFF * diff --git a/src/ipcpd/unicast/pol/tests/graph_test.c b/src/ipcpd/unicast/pol/tests/graph_test.c index a312c1a8..266ca9d7 100644 --- a/src/ipcpd/unicast/pol/tests/graph_test.c +++ b/src/ipcpd/unicast/pol/tests/graph_test.c @@ -1,5 +1,5 @@ /* - * Ouroboros - Copyright (C) 2016 - 2019 + * Ouroboros - Copyright (C) 2016 - 2020 * * Test of the graph structure * diff --git a/src/ipcpd/unicast/psched.c b/src/ipcpd/unicast/psched.c index 6e8c4e0e..1ac3fc12 100644 --- a/src/ipcpd/unicast/psched.c +++ b/src/ipcpd/unicast/psched.c @@ -1,5 +1,5 @@ /* - * Ouroboros - Copyright (C) 2016 - 2019 + * Ouroboros - Copyright (C) 2016 - 2020 * * Packet scheduler component * diff --git a/src/ipcpd/unicast/psched.h b/src/ipcpd/unicast/psched.h index bc98670b..85f32b9a 100644 --- a/src/ipcpd/unicast/psched.h +++ b/src/ipcpd/unicast/psched.h @@ -1,5 +1,5 @@ /* - * Ouroboros - Copyright (C) 2016 - 2019 + * Ouroboros - Copyright (C) 2016 - 2020 * * Packet scheduler component * diff --git a/src/ipcpd/unicast/routing.c b/src/ipcpd/unicast/routing.c index 2cd24707..1d660cde 100644 --- a/src/ipcpd/unicast/routing.c +++ b/src/ipcpd/unicast/routing.c @@ -1,5 +1,5 @@ /* - * Ouroboros - Copyright (C) 2016 - 2019 + * Ouroboros - Copyright (C) 2016 - 2020 * * Routing component of the IPCP * diff --git a/src/ipcpd/unicast/routing.h b/src/ipcpd/unicast/routing.h index ffded5bf..38e875e7 100644 --- a/src/ipcpd/unicast/routing.h +++ b/src/ipcpd/unicast/routing.h @@ -1,5 +1,5 @@ /* - * Ouroboros - Copyright (C) 2016 - 2019 + * Ouroboros - Copyright (C) 2016 - 2020 * * Routing component of the IPCP * diff --git a/src/ipcpd/unicast/tests/dht_test.c b/src/ipcpd/unicast/tests/dht_test.c index 26e9102e..21ecd564 100644 --- a/src/ipcpd/unicast/tests/dht_test.c +++ b/src/ipcpd/unicast/tests/dht_test.c @@ -1,5 +1,5 @@ /* - * Ouroboros - Copyright (C) 2016 - 2019 + * Ouroboros - Copyright (C) 2016 - 2020 * * Unit tests of the DHT * -- cgit v1.2.3