From 06d16733c34fe21683c0f3147dde70bb3e899849 Mon Sep 17 00:00:00 2001 From: Louis Royer Date: Wed, 4 Dec 2024 14:22:22 +0100 Subject: [PATCH] Update copyright header --- internal/app/api/registry.go | 3 ++- internal/app/registry.go | 3 ++- internal/app/setup.go | 3 ++- internal/config/behavior-options.go | 3 ++- internal/config/bsid.go | 3 ++- internal/config/config.go | 2 +- internal/config/endpoint.go | 3 ++- internal/config/headend-behavior.go | 3 ++- internal/config/headend.go | 3 ++- internal/config/hooks.go | 3 ++- internal/config/logger.go | 3 ++- internal/config/match.go | 3 ++- internal/config/policy.go | 3 ++- internal/config/provider.go | 3 ++- internal/constants/constants.go | 3 ++- internal/ctrl/api/rules-registry-http.go | 3 ++- internal/ctrl/controller-registry.go | 3 ++- internal/ctrl/rules-registry.go | 3 ++- internal/database/api/downlink.go | 3 ++- internal/database/api/uplink.go | 3 ++- internal/database/database.go | 3 ++- internal/database/database.sql | 2 +- internal/database/database_gen.go | 2 +- internal/database/gen.go | 5 +++-- internal/iana/srv6-endpoint-behaviors-registry.go | 3 ++- internal/iproute2/api/iface.go | 3 ++- internal/iproute2/dummy-iface.go | 3 ++- internal/iproute2/table.go | 3 ++- internal/iproute2/tun-iface.go | 3 ++- internal/iproute2/utils.go | 3 ++- internal/netfunc/api/handler.go | 3 ++- internal/netfunc/api/netfunc.go | 3 ++- internal/netfunc/base-handler.go | 3 ++- internal/netfunc/endpoint-m-gtp4-e.go | 3 ++- internal/netfunc/endpoint.go | 3 ++- internal/netfunc/headend-ctrl.go | 3 ++- internal/netfunc/headend-encaps-ctrl.go | 3 ++- internal/netfunc/headend-gtp4-ctrl.go | 3 ++- internal/netfunc/headend-gtp4.go | 3 ++- internal/netfunc/headend.go | 3 ++- internal/netfunc/netfunc.go | 3 ++- internal/netfunc/packet.go | 2 +- internal/tasks/api/registry.go | 3 ++- internal/tasks/api/task.go | 3 ++- internal/tasks/api/taskunit.go | 3 ++- internal/tasks/blackhole.go | 3 ++- internal/tasks/controller-registry.go | 3 ++- internal/tasks/db.go | 3 ++- internal/tasks/dummy-iface.go | 3 ++- internal/tasks/fake.go | 3 ++- internal/tasks/http-server.go | 3 ++- internal/tasks/iprule.go | 3 ++- internal/tasks/linux-endpoint.go | 3 ++- internal/tasks/linux-headend-set-source-address.go | 3 ++- internal/tasks/linux-headend.go | 3 ++- internal/tasks/multi-hook.go | 3 ++- internal/tasks/nextmn-endpoint.go | 3 ++- internal/tasks/nextmn-headend-ctrl.go | 3 ++- internal/tasks/nextmn-headend.go | 3 ++- internal/tasks/registry.go | 3 ++- internal/tasks/single-hook.go | 3 ++- internal/tasks/tun-iface.go | 3 ++- internal/tasks/with-name.go | 3 ++- internal/tasks/with-state.go | 3 ++- main.go | 3 ++- 65 files changed, 127 insertions(+), 66 deletions(-) diff --git a/internal/app/api/registry.go b/internal/app/api/registry.go index 7046dc7..08d4e0b 100644 --- a/internal/app/api/registry.go +++ b/internal/app/api/registry.go @@ -1,7 +1,8 @@ -// Copyright 2023 Louis Royer and the NextMN-SRv6 contributors. All rights reserved. +// Copyright 2023 Louis Royer and the NextMN contributors. All rights reserved. // Use of this source code is governed by a MIT-style license that can be // found in the LICENSE file. // SPDX-License-Identifier: MIT + package app_api import ( diff --git a/internal/app/registry.go b/internal/app/registry.go index 40748e7..cfa1b41 100644 --- a/internal/app/registry.go +++ b/internal/app/registry.go @@ -1,7 +1,8 @@ -// Copyright 2023 Louis Royer and the NextMN-SRv6 contributors. All rights reserved. +// Copyright 2023 Louis Royer and the NextMN contributors. All rights reserved. // Use of this source code is governed by a MIT-style license that can be // found in the LICENSE file. // SPDX-License-Identifier: MIT + package app import ( diff --git a/internal/app/setup.go b/internal/app/setup.go index 0d12836..cf6b7f6 100644 --- a/internal/app/setup.go +++ b/internal/app/setup.go @@ -1,7 +1,8 @@ -// Copyright 2023 Louis Royer and the NextMN-SRv6 contributors. All rights reserved. +// Copyright 2023 Louis Royer and the NextMN contributors. All rights reserved. // Use of this source code is governed by a MIT-style license that can be // found in the LICENSE file. // SPDX-License-Identifier: MIT + package app import ( diff --git a/internal/config/behavior-options.go b/internal/config/behavior-options.go index 97896e2..041515a 100644 --- a/internal/config/behavior-options.go +++ b/internal/config/behavior-options.go @@ -1,7 +1,8 @@ -// Copyright 2023 Louis Royer and the NextMN-SRv6 contributors. All rights reserved. +// Copyright 2023 Louis Royer and the NextMN contributors. All rights reserved. // Use of this source code is governed by a MIT-style license that can be // found in the LICENSE file. // SPDX-License-Identifier: MIT + package config type BehaviorOptions struct { diff --git a/internal/config/bsid.go b/internal/config/bsid.go index 0fd55e0..9b3963f 100644 --- a/internal/config/bsid.go +++ b/internal/config/bsid.go @@ -1,7 +1,8 @@ -// Copyright 2023 Louis Royer and the NextMN-SRv6 contributors. All rights reserved. +// Copyright 2023 Louis Royer and the NextMN contributors. All rights reserved. // Use of this source code is governed by a MIT-style license that can be // found in the LICENSE file. // SPDX-License-Identifier: MIT + package config import ( diff --git a/internal/config/config.go b/internal/config/config.go index 0ffa2db..b98d20a 100644 --- a/internal/config/config.go +++ b/internal/config/config.go @@ -1,4 +1,4 @@ -// Copyright 2023 Louis Royer and the NextMN-SRv6 contributors. All rights reserved. +// Copyright 2023 Louis Royer and the NextMN contributors. All rights reserved. // Use of this source code is governed by a MIT-style license that can be // found in the LICENSE file. // SPDX-License-Identifier: MIT diff --git a/internal/config/endpoint.go b/internal/config/endpoint.go index dadef07..f0a90f4 100644 --- a/internal/config/endpoint.go +++ b/internal/config/endpoint.go @@ -1,7 +1,8 @@ -// Copyright 2023 Louis Royer and the NextMN-SRv6 contributors. All rights reserved. +// Copyright 2023 Louis Royer and the NextMN contributors. All rights reserved. // Use of this source code is governed by a MIT-style license that can be // found in the LICENSE file. // SPDX-License-Identifier: MIT + package config import "github.com/nextmn/srv6/internal/iana" diff --git a/internal/config/headend-behavior.go b/internal/config/headend-behavior.go index 095ae4f..8df4f8c 100644 --- a/internal/config/headend-behavior.go +++ b/internal/config/headend-behavior.go @@ -1,7 +1,8 @@ -// Copyright 2023 Louis Royer and the NextMN-SRv6 contributors. All rights reserved. +// Copyright 2023 Louis Royer and the NextMN contributors. All rights reserved. // Use of this source code is governed by a MIT-style license that can be // found in the LICENSE file. // SPDX-License-Identifier: MIT + package config import ( diff --git a/internal/config/headend.go b/internal/config/headend.go index 346b374..8425591 100644 --- a/internal/config/headend.go +++ b/internal/config/headend.go @@ -1,7 +1,8 @@ -// Copyright 2023 Louis Royer and the NextMN-SRv6 contributors. All rights reserved. +// Copyright 2023 Louis Royer and the NextMN contributors. All rights reserved. // Use of this source code is governed by a MIT-style license that can be // found in the LICENSE file. // SPDX-License-Identifier: MIT + package config type Headend struct { diff --git a/internal/config/hooks.go b/internal/config/hooks.go index 2027f41..bb57fbc 100644 --- a/internal/config/hooks.go +++ b/internal/config/hooks.go @@ -1,7 +1,8 @@ -// Copyright 2023 Louis Royer and the NextMN-SRv6 contributors. All rights reserved. +// Copyright 2023 Louis Royer and the NextMN contributors. All rights reserved. // Use of this source code is governed by a MIT-style license that can be // found in the LICENSE file. // SPDX-License-Identifier: MIT + package config type Hooks struct { diff --git a/internal/config/logger.go b/internal/config/logger.go index e93f858..188b0bc 100644 --- a/internal/config/logger.go +++ b/internal/config/logger.go @@ -1,7 +1,8 @@ -// Copyright 2024 Louis Royer and the NextMN-SRv6 contributors. All rights reserved. +// Copyright 2024 Louis Royer and the NextMN contributors. All rights reserved. // Use of this source code is governed by a MIT-style license that can be // found in the LICENSE file. // SPDX-License-Identifier: MIT + package config import "github.com/sirupsen/logrus" diff --git a/internal/config/match.go b/internal/config/match.go index 6cc4f9f..c28b427 100644 --- a/internal/config/match.go +++ b/internal/config/match.go @@ -1,7 +1,8 @@ -// Copyright 2023 Louis Royer and the NextMN-SRv6 contributors. All rights reserved. +// Copyright 2023 Louis Royer and the NextMN contributors. All rights reserved. // Use of this source code is governed by a MIT-style license that can be // found in the LICENSE file. // SPDX-License-Identifier: MIT + package config type Match struct { diff --git a/internal/config/policy.go b/internal/config/policy.go index 050d9bb..0eb14ea 100644 --- a/internal/config/policy.go +++ b/internal/config/policy.go @@ -1,7 +1,8 @@ -// Copyright 2023 Louis Royer and the NextMN-SRv6 contributors. All rights reserved. +// Copyright 2023 Louis Royer and the NextMN contributors. All rights reserved. // Use of this source code is governed by a MIT-style license that can be // found in the LICENSE file. // SPDX-License-Identifier: MIT + package config type Policy struct { diff --git a/internal/config/provider.go b/internal/config/provider.go index 383e188..18a0a98 100644 --- a/internal/config/provider.go +++ b/internal/config/provider.go @@ -1,7 +1,8 @@ -// Copyright 2023 Louis Royer and the NextMN-SRv6 contributors. All rights reserved. +// Copyright 2023 Louis Royer and the NextMN contributors. All rights reserved. // Use of this source code is governed by a MIT-style license that can be // found in the LICENSE file. // SPDX-License-Identifier: MIT + package config import ( diff --git a/internal/constants/constants.go b/internal/constants/constants.go index c1b094f..e8cca68 100644 --- a/internal/constants/constants.go +++ b/internal/constants/constants.go @@ -1,7 +1,8 @@ -// Copyright 2023 Louis Royer and the NextMN-SRv6 contributors. All rights reserved. +// Copyright 2023 Louis Royer and the NextMN contributors. All rights reserved. // Use of this source code is governed by a MIT-style license that can be // found in the LICENSE file. // SPDX-License-Identifier: MIT + package constants // ports diff --git a/internal/ctrl/api/rules-registry-http.go b/internal/ctrl/api/rules-registry-http.go index 98c142c..461e48c 100644 --- a/internal/ctrl/api/rules-registry-http.go +++ b/internal/ctrl/api/rules-registry-http.go @@ -1,7 +1,8 @@ -// Copyright 2024 Louis Royer and the NextMN-SRv6 contributors. All rights reserved. +// Copyright 2024 Louis Royer and the NextMN contributors. All rights reserved. // Use of this source code is governed by a MIT-style license that can be // found in the LICENSE file. // SPDX-License-Identifier: MIT + package ctrl_api import ( diff --git a/internal/ctrl/controller-registry.go b/internal/ctrl/controller-registry.go index bc6073d..c94e378 100644 --- a/internal/ctrl/controller-registry.go +++ b/internal/ctrl/controller-registry.go @@ -1,7 +1,8 @@ -// Copyright 2023 Louis Royer and the NextMN-SRv6 contributors. All rights reserved. +// Copyright 2023 Louis Royer and the NextMN contributors. All rights reserved. // Use of this source code is governed by a MIT-style license that can be // found in the LICENSE file. // SPDX-License-Identifier: MIT + package ctrl import ( diff --git a/internal/ctrl/rules-registry.go b/internal/ctrl/rules-registry.go index a96697a..640e969 100644 --- a/internal/ctrl/rules-registry.go +++ b/internal/ctrl/rules-registry.go @@ -1,7 +1,8 @@ -// Copyright 2024 Louis Royer and the NextMN-SRv6 contributors. All rights reserved. +// Copyright 2024 Louis Royer and the NextMN contributors. All rights reserved. // Use of this source code is governed by a MIT-style license that can be // found in the LICENSE file. // SPDX-License-Identifier: MIT + package ctrl import ( diff --git a/internal/database/api/downlink.go b/internal/database/api/downlink.go index 9bdee11..4353d2b 100644 --- a/internal/database/api/downlink.go +++ b/internal/database/api/downlink.go @@ -1,7 +1,8 @@ -// Copyright 2024 Louis Royer and the NextMN-SRv6 contributors. All rights reserved. +// Copyright 2024 Louis Royer and the NextMN contributors. All rights reserved. // Use of this source code is governed by a MIT-style license that can be // found in the LICENSE file. // SPDX-License-Identifier: MIT + package database_api import ( diff --git a/internal/database/api/uplink.go b/internal/database/api/uplink.go index 9ef0828..72aec6c 100644 --- a/internal/database/api/uplink.go +++ b/internal/database/api/uplink.go @@ -1,7 +1,8 @@ -// Copyright 2024 Louis Royer and the NextMN-SRv6 contributors. All rights reserved. +// Copyright 2024 Louis Royer and the NextMN contributors. All rights reserved. // Use of this source code is governed by a MIT-style license that can be // found in the LICENSE file. // SPDX-License-Identifier: MIT + package database_api import ( diff --git a/internal/database/database.go b/internal/database/database.go index 692f9b6..c03c094 100644 --- a/internal/database/database.go +++ b/internal/database/database.go @@ -1,7 +1,8 @@ -// Copyright 2024 Louis Royer and the NextMN-SRv6 contributors. All rights reserved. +// Copyright 2024 Louis Royer and the NextMN contributors. All rights reserved. // Use of this source code is governed by a MIT-style license that can be // found in the LICENSE file. // SPDX-License-Identifier: MIT + package database import ( diff --git a/internal/database/database.sql b/internal/database/database.sql index bb321f9..626c08c 100644 --- a/internal/database/database.sql +++ b/internal/database/database.sql @@ -1,4 +1,4 @@ --- Copyright 2024 Louis Royer and the NextMN-SRv6 contributors. All rights reserved. +-- Copyright 2024 Louis Royer and the NextMN contributors. All rights reserved. -- Use of this source code is governed by a MIT-style license that can be -- SPDX-License-Identifier: MIT CREATE EXTENSION IF NOT EXISTS "uuid-ossp"; diff --git a/internal/database/database_gen.go b/internal/database/database_gen.go index 0b18f1f..d24c44f 100644 --- a/internal/database/database_gen.go +++ b/internal/database/database_gen.go @@ -1,6 +1,6 @@ // Code generated by gen.go; DO NOT EDIT. -// Copyright 2024 Louis Royer and the NextMN-SRv6 contributors. All rights reserved. +// Copyright 2024 Louis Royer and the NextMN contributors. All rights reserved. // Use of this source code is governed by a MIT-style license that can be // found in the LICENSE file. diff --git a/internal/database/gen.go b/internal/database/gen.go index e3acfc1..85d6c5b 100644 --- a/internal/database/gen.go +++ b/internal/database/gen.go @@ -1,8 +1,9 @@ //go:build ignore -// Copyright 2024 Louis Royer and the NextMN-SRv6 contributors. All rights reserved. +// Copyright 2024 Louis Royer and the NextMN contributors. All rights reserved. // Use of this source code is governed by a MIT-style license that can be // found in the LICENSE file. + package main import ( @@ -47,7 +48,7 @@ func main() { panic(err) } licence := ` -// Copyright 2024 Louis Royer and the NextMN-SRv6 contributors. All rights reserved. +// Copyright 2024 Louis Royer and the NextMN contributors. All rights reserved. // Use of this source code is governed by a MIT-style license that can be // found in the LICENSE file. diff --git a/internal/iana/srv6-endpoint-behaviors-registry.go b/internal/iana/srv6-endpoint-behaviors-registry.go index f5b3e8a..7d26e75 100644 --- a/internal/iana/srv6-endpoint-behaviors-registry.go +++ b/internal/iana/srv6-endpoint-behaviors-registry.go @@ -1,7 +1,8 @@ -// Copyright 2023 Louis Royer and the NextMN-SRv6 contributors. All rights reserved. +// Copyright 2023 Louis Royer and the NextMN contributors. All rights reserved. // Use of this source code is governed by a MIT-style license that can be // found in the LICENSE file. // SPDX-License-Identifier: MIT + package iana import ( diff --git a/internal/iproute2/api/iface.go b/internal/iproute2/api/iface.go index a357749..3f552f6 100644 --- a/internal/iproute2/api/iface.go +++ b/internal/iproute2/api/iface.go @@ -1,7 +1,8 @@ -// Copyright 2023 Louis Royer and the NextMN-SRv6 contributors. All rights reserved. +// Copyright 2023 Louis Royer and the NextMN contributors. All rights reserved. // Use of this source code is governed by a MIT-style license that can be // found in the LICENSE file. // SPDX-License-Identifier: MIT + package iproute2_api type Iface interface { diff --git a/internal/iproute2/dummy-iface.go b/internal/iproute2/dummy-iface.go index 3b3c09c..19c52b5 100644 --- a/internal/iproute2/dummy-iface.go +++ b/internal/iproute2/dummy-iface.go @@ -1,7 +1,8 @@ -// Copyright 2023 Louis Royer and the NextMN-SRv6 contributors. All rights reserved. +// Copyright 2023 Louis Royer and the NextMN contributors. All rights reserved. // Use of this source code is governed by a MIT-style license that can be // found in the LICENSE file. // SPDX-License-Identifier: MIT + package iproute2 // IPRoute2 Dummy interface diff --git a/internal/iproute2/table.go b/internal/iproute2/table.go index 26d3956..d63e412 100644 --- a/internal/iproute2/table.go +++ b/internal/iproute2/table.go @@ -1,7 +1,8 @@ -// Copyright 2023 Louis Royer and the NextMN-SRv6 contributors. All rights reserved. +// Copyright 2023 Louis Royer and the NextMN contributors. All rights reserved. // Use of this source code is governed by a MIT-style license that can be // found in the LICENSE file. // SPDX-License-Identifier: MIT + package iproute2 import "github.com/nextmn/srv6/internal/iana" diff --git a/internal/iproute2/tun-iface.go b/internal/iproute2/tun-iface.go index a41f6cd..5754197 100644 --- a/internal/iproute2/tun-iface.go +++ b/internal/iproute2/tun-iface.go @@ -1,7 +1,8 @@ -// Copyright 2023 Louis Royer and the NextMN-SRv6 contributors. All rights reserved. +// Copyright 2023 Louis Royer and the NextMN contributors. All rights reserved. // Use of this source code is governed by a MIT-style license that can be // found in the LICENSE file. // SPDX-License-Identifier: MIT + package iproute2 import ( diff --git a/internal/iproute2/utils.go b/internal/iproute2/utils.go index 6fb822c..db85103 100644 --- a/internal/iproute2/utils.go +++ b/internal/iproute2/utils.go @@ -1,7 +1,8 @@ -// Copyright 2023 Louis Royer and the NextMN-SRv6 contributors. All rights reserved. +// Copyright 2023 Louis Royer and the NextMN contributors. All rights reserved. // Use of this source code is governed by a MIT-style license that can be // found in the LICENSE file. // SPDX-License-Identifier: MIT + package iproute2 import ( diff --git a/internal/netfunc/api/handler.go b/internal/netfunc/api/handler.go index 6546ae4..55c2566 100644 --- a/internal/netfunc/api/handler.go +++ b/internal/netfunc/api/handler.go @@ -1,7 +1,8 @@ -// Copyright 2023 Louis Royer and the NextMN-SRv6 contributors. All rights reserved. +// Copyright 2023 Louis Royer and the NextMN contributors. All rights reserved. // Use of this source code is governed by a MIT-style license that can be // found in the LICENSE file. // SPDX-License-Identifier: MIT + package netfunc import "context" diff --git a/internal/netfunc/api/netfunc.go b/internal/netfunc/api/netfunc.go index 03cf3d9..23d70c0 100644 --- a/internal/netfunc/api/netfunc.go +++ b/internal/netfunc/api/netfunc.go @@ -1,7 +1,8 @@ -// Copyright 2023 Louis Royer and the NextMN-SRv6 contributors. All rights reserved. +// Copyright 2023 Louis Royer and the NextMN contributors. All rights reserved. // Use of this source code is governed by a MIT-style license that can be // found in the LICENSE file. // SPDX-License-Identifier: MIT + package netfunc import ( diff --git a/internal/netfunc/base-handler.go b/internal/netfunc/base-handler.go index 4cb03ec..1b09f7d 100644 --- a/internal/netfunc/base-handler.go +++ b/internal/netfunc/base-handler.go @@ -1,7 +1,8 @@ -// Copyright 2023 Louis Royer and the NextMN-SRv6 contributors. All rights reserved. +// Copyright 2023 Louis Royer and the NextMN contributors. All rights reserved. // Use of this source code is governed by a MIT-style license that can be // found in the LICENSE file. // SPDX-License-Identifier: MIT + package netfunc import ( diff --git a/internal/netfunc/endpoint-m-gtp4-e.go b/internal/netfunc/endpoint-m-gtp4-e.go index ea872db..eb9b2ba 100644 --- a/internal/netfunc/endpoint-m-gtp4-e.go +++ b/internal/netfunc/endpoint-m-gtp4-e.go @@ -1,7 +1,8 @@ -// Copyright 2023 Louis Royer and the NextMN-SRv6 contributors. All rights reserved. +// Copyright 2023 Louis Royer and the NextMN contributors. All rights reserved. // Use of this source code is governed by a MIT-style license that can be // found in the LICENSE file. // SPDX-License-Identifier: MIT + package netfunc import ( diff --git a/internal/netfunc/endpoint.go b/internal/netfunc/endpoint.go index 13cc6b0..44d238f 100644 --- a/internal/netfunc/endpoint.go +++ b/internal/netfunc/endpoint.go @@ -1,7 +1,8 @@ -// Copyright 2023 Louis Royer and the NextMN-SRv6 contributors. All rights reserved. +// Copyright 2023 Louis Royer and the NextMN contributors. All rights reserved. // Use of this source code is governed by a MIT-style license that can be // found in the LICENSE file. // SPDX-License-Identifier: MIT + package netfunc import ( diff --git a/internal/netfunc/headend-ctrl.go b/internal/netfunc/headend-ctrl.go index 57e21be..668968f 100644 --- a/internal/netfunc/headend-ctrl.go +++ b/internal/netfunc/headend-ctrl.go @@ -1,7 +1,8 @@ -// Copyright 2023 Louis Royer and the NextMN-SRv6 contributors. All rights reserved. +// Copyright 2023 Louis Royer and the NextMN contributors. All rights reserved. // Use of this source code is governed by a MIT-style license that can be // found in the LICENSE file. // SPDX-License-Identifier: MIT + package netfunc import ( diff --git a/internal/netfunc/headend-encaps-ctrl.go b/internal/netfunc/headend-encaps-ctrl.go index fbb7888..71b2f8f 100644 --- a/internal/netfunc/headend-encaps-ctrl.go +++ b/internal/netfunc/headend-encaps-ctrl.go @@ -1,7 +1,8 @@ -// Copyright 2023 Louis Royer and the NextMN-SRv6 contributors. All rights reserved. +// Copyright 2023 Louis Royer and the NextMN contributors. All rights reserved. // Use of this source code is governed by a MIT-style license that can be // found in the LICENSE file. // SPDX-License-Identifier: MIT + package netfunc import ( diff --git a/internal/netfunc/headend-gtp4-ctrl.go b/internal/netfunc/headend-gtp4-ctrl.go index c802591..68dd322 100644 --- a/internal/netfunc/headend-gtp4-ctrl.go +++ b/internal/netfunc/headend-gtp4-ctrl.go @@ -1,7 +1,8 @@ -// Copyright 2023 Louis Royer and the NextMN-SRv6 contributors. All rights reserved. +// Copyright 2023 Louis Royer and the NextMN contributors. All rights reserved. // Use of this source code is governed by a MIT-style license that can be // found in the LICENSE file. // SPDX-License-Identifier: MIT + package netfunc import ( diff --git a/internal/netfunc/headend-gtp4.go b/internal/netfunc/headend-gtp4.go index b45c04f..806eaf9 100644 --- a/internal/netfunc/headend-gtp4.go +++ b/internal/netfunc/headend-gtp4.go @@ -1,7 +1,8 @@ -// Copyright 2023 Louis Royer and the NextMN-SRv6 contributors. All rights reserved. +// Copyright 2023 Louis Royer and the NextMN contributors. All rights reserved. // Use of this source code is governed by a MIT-style license that can be // found in the LICENSE file. // SPDX-License-Identifier: MIT + package netfunc import ( diff --git a/internal/netfunc/headend.go b/internal/netfunc/headend.go index 909886e..fdd2187 100644 --- a/internal/netfunc/headend.go +++ b/internal/netfunc/headend.go @@ -1,7 +1,8 @@ -// Copyright 2023 Louis Royer and the NextMN-SRv6 contributors. All rights reserved. +// Copyright 2023 Louis Royer and the NextMN contributors. All rights reserved. // Use of this source code is governed by a MIT-style license that can be // found in the LICENSE file. // SPDX-License-Identifier: MIT + package netfunc import ( diff --git a/internal/netfunc/netfunc.go b/internal/netfunc/netfunc.go index 3988dc5..d3f069f 100644 --- a/internal/netfunc/netfunc.go +++ b/internal/netfunc/netfunc.go @@ -1,7 +1,8 @@ -// Copyright 2023 Louis Royer and the NextMN-SRv6 contributors. All rights reserved. +// Copyright 2023 Louis Royer and the NextMN contributors. All rights reserved. // Use of this source code is governed by a MIT-style license that can be // found in the LICENSE file. // SPDX-License-Identifier: MIT + package netfunc import ( diff --git a/internal/netfunc/packet.go b/internal/netfunc/packet.go index fcc8df6..360edb3 100644 --- a/internal/netfunc/packet.go +++ b/internal/netfunc/packet.go @@ -1,4 +1,4 @@ -// Copyright 2023 Louis Royer and the NextMN-SRv6 contributors. All rights reserved. +// Copyright 2023 Louis Royer and the NextMN contributors. All rights reserved. // Use of this source code is governed by a MIT-style license that can be // found in the LICENSE file. // SPDX-License-Identifier: MIT diff --git a/internal/tasks/api/registry.go b/internal/tasks/api/registry.go index d2fdb36..ac7dd46 100644 --- a/internal/tasks/api/registry.go +++ b/internal/tasks/api/registry.go @@ -1,7 +1,8 @@ -// Copyright 2023 Louis Royer and the NextMN-SRv6 contributors. All rights reserved. +// Copyright 2023 Louis Royer and the NextMN contributors. All rights reserved. // Use of this source code is governed by a MIT-style license that can be // found in the LICENSE file. // SPDX-License-Identifier: MIT + package tasks_api import "context" diff --git a/internal/tasks/api/task.go b/internal/tasks/api/task.go index aa377cf..6ebd212 100644 --- a/internal/tasks/api/task.go +++ b/internal/tasks/api/task.go @@ -1,7 +1,8 @@ -// Copyright 2023 Louis Royer and the NextMN-SRv6 contributors. All rights reserved. +// Copyright 2023 Louis Royer and the NextMN contributors. All rights reserved. // Use of this source code is governed by a MIT-style license that can be // found in the LICENSE file. // SPDX-License-Identifier: MIT + package tasks_api import "context" diff --git a/internal/tasks/api/taskunit.go b/internal/tasks/api/taskunit.go index 346f027..149476f 100644 --- a/internal/tasks/api/taskunit.go +++ b/internal/tasks/api/taskunit.go @@ -1,7 +1,8 @@ -// Copyright 2023 Louis Royer and the NextMN-SRv6 contributors. All rights reserved. +// Copyright 2023 Louis Royer and the NextMN contributors. All rights reserved. // Use of this source code is governed by a MIT-style license that can be // found in the LICENSE file. // SPDX-License-Identifier: MIT + package tasks_api // Task to be run diff --git a/internal/tasks/blackhole.go b/internal/tasks/blackhole.go index 72d743b..e8653a3 100644 --- a/internal/tasks/blackhole.go +++ b/internal/tasks/blackhole.go @@ -1,7 +1,8 @@ -// Copyright 2023 Louis Royer and the NextMN-SRv6 contributors. All rights reserved. +// Copyright 2023 Louis Royer and the NextMN contributors. All rights reserved. // Use of this source code is governed by a MIT-style license that can be // found in the LICENSE file. // SPDX-License-Identifier: MIT + package tasks import ( diff --git a/internal/tasks/controller-registry.go b/internal/tasks/controller-registry.go index a5299d8..2707512 100644 --- a/internal/tasks/controller-registry.go +++ b/internal/tasks/controller-registry.go @@ -1,7 +1,8 @@ -// Copyright 2023 Louis Royer and the NextMN-SRv6 contributors. All rights reserved. +// Copyright 2023 Louis Royer and the NextMN contributors. All rights reserved. // Use of this source code is governed by a MIT-style license that can be // found in the LICENSE file. // SPDX-License-Identifier: MIT + package tasks import ( diff --git a/internal/tasks/db.go b/internal/tasks/db.go index 4af45eb..df63691 100644 --- a/internal/tasks/db.go +++ b/internal/tasks/db.go @@ -1,7 +1,8 @@ -// Copyright 2024 Louis Royer and the NextMN-SRv6 contributors. All rights reserved. +// Copyright 2024 Louis Royer and the NextMN contributors. All rights reserved. // Use of this source code is governed by a MIT-style license that can be // found in the LICENSE file. // SPDX-License-Identifier: MIT + package tasks import ( diff --git a/internal/tasks/dummy-iface.go b/internal/tasks/dummy-iface.go index 1333bc3..8d6d2c1 100644 --- a/internal/tasks/dummy-iface.go +++ b/internal/tasks/dummy-iface.go @@ -1,7 +1,8 @@ -// Copyright 2023 Louis Royer and the NextMN-SRv6 contributors. All rights reserved. +// Copyright 2023 Louis Royer and the NextMN contributors. All rights reserved. // Use of this source code is governed by a MIT-style license that can be // found in the LICENSE file. // SPDX-License-Identifier: MIT + package tasks import ( diff --git a/internal/tasks/fake.go b/internal/tasks/fake.go index 88d3cdf..af35044 100644 --- a/internal/tasks/fake.go +++ b/internal/tasks/fake.go @@ -1,7 +1,8 @@ -// Copyright 2023 Louis Royer and the NextMN-SRv6 contributors. All rights reserved. +// Copyright 2023 Louis Royer and the NextMN contributors. All rights reserved. // Use of this source code is governed by a MIT-style license that can be // found in the LICENSE file. // SPDX-License-Identifier: MIT + package tasks import "context" diff --git a/internal/tasks/http-server.go b/internal/tasks/http-server.go index ecb58bf..e52f06b 100644 --- a/internal/tasks/http-server.go +++ b/internal/tasks/http-server.go @@ -1,7 +1,8 @@ -// Copyright 2024 Louis Royer and the NextMN-SRv6 contributors. All rights reserved. +// Copyright 2024 Louis Royer and the NextMN contributors. All rights reserved. // Use of this source code is governed by a MIT-style license that can be // found in the LICENSE file. // SPDX-License-Identifier: MIT + package tasks import ( diff --git a/internal/tasks/iprule.go b/internal/tasks/iprule.go index 52fd96a..c7f1c89 100644 --- a/internal/tasks/iprule.go +++ b/internal/tasks/iprule.go @@ -1,7 +1,8 @@ -// Copyright 2023 Louis Royer and the NextMN-SRv6 contributors. All rights reserved. +// Copyright 2023 Louis Royer and the NextMN contributors. All rights reserved. // Use of this source code is governed by a MIT-style license that can be // found in the LICENSE file. // SPDX-License-Identifier: MIT + package tasks import ( diff --git a/internal/tasks/linux-endpoint.go b/internal/tasks/linux-endpoint.go index ab8fa97..bc424b0 100644 --- a/internal/tasks/linux-endpoint.go +++ b/internal/tasks/linux-endpoint.go @@ -1,7 +1,8 @@ -// Copyright 2023 Louis Royer and the NextMN-SRv6 contributors. All rights reserved. +// Copyright 2023 Louis Royer and the NextMN contributors. All rights reserved. // Use of this source code is governed by a MIT-style license that can be // found in the LICENSE file. // SPDX-License-Identifier: MIT + package tasks import ( diff --git a/internal/tasks/linux-headend-set-source-address.go b/internal/tasks/linux-headend-set-source-address.go index 95268b5..456f896 100644 --- a/internal/tasks/linux-headend-set-source-address.go +++ b/internal/tasks/linux-headend-set-source-address.go @@ -1,7 +1,8 @@ -// Copyright 2023 Louis Royer and the NextMN-SRv6 contributors. All rights reserved. +// Copyright 2023 Louis Royer and the NextMN contributors. All rights reserved. // Use of this source code is governed by a MIT-style license that can be // found in the LICENSE file. // SPDX-License-Identifier: MIT + package tasks import ( diff --git a/internal/tasks/linux-headend.go b/internal/tasks/linux-headend.go index 0bf6ef1..c0dc623 100644 --- a/internal/tasks/linux-headend.go +++ b/internal/tasks/linux-headend.go @@ -1,7 +1,8 @@ -// Copyright 2023 Louis Royer and the NextMN-SRv6 contributors. All rights reserved. +// Copyright 2023 Louis Royer and the NextMN contributors. All rights reserved. // Use of this source code is governed by a MIT-style license that can be // found in the LICENSE file. // SPDX-License-Identifier: MIT + package tasks import ( diff --git a/internal/tasks/multi-hook.go b/internal/tasks/multi-hook.go index a2eaa11..395b7f5 100644 --- a/internal/tasks/multi-hook.go +++ b/internal/tasks/multi-hook.go @@ -1,7 +1,8 @@ -// Copyright 2023 Louis Royer and the NextMN-SRv6 contributors. All rights reserved. +// Copyright 2023 Louis Royer and the NextMN contributors. All rights reserved. // Use of this source code is governed by a MIT-style license that can be // found in the LICENSE file. // SPDX-License-Identifier: MIT + package tasks import ( diff --git a/internal/tasks/nextmn-endpoint.go b/internal/tasks/nextmn-endpoint.go index fa3030c..853210c 100644 --- a/internal/tasks/nextmn-endpoint.go +++ b/internal/tasks/nextmn-endpoint.go @@ -1,7 +1,8 @@ -// Copyright 2023 Louis Royer and the NextMN-SRv6 contributors. All rights reserved. +// Copyright 2023 Louis Royer and the NextMN contributors. All rights reserved. // Use of this source code is governed by a MIT-style license that can be // found in the LICENSE file. // SPDX-License-Identifier: MIT + package tasks import ( diff --git a/internal/tasks/nextmn-headend-ctrl.go b/internal/tasks/nextmn-headend-ctrl.go index 3a4cf9c..a5919c1 100644 --- a/internal/tasks/nextmn-headend-ctrl.go +++ b/internal/tasks/nextmn-headend-ctrl.go @@ -1,7 +1,8 @@ -// Copyright 2023 Louis Royer and the NextMN-SRv6 contributors. All rights reserved. +// Copyright 2023 Louis Royer and the NextMN contributors. All rights reserved. // Use of this source code is governed by a MIT-style license that can be // found in the LICENSE file. // SPDX-License-Identifier: MIT + package tasks import ( diff --git a/internal/tasks/nextmn-headend.go b/internal/tasks/nextmn-headend.go index d93cd2e..cf78a28 100644 --- a/internal/tasks/nextmn-headend.go +++ b/internal/tasks/nextmn-headend.go @@ -1,7 +1,8 @@ -// Copyright 2023 Louis Royer and the NextMN-SRv6 contributors. All rights reserved. +// Copyright 2023 Louis Royer and the NextMN contributors. All rights reserved. // Use of this source code is governed by a MIT-style license that can be // found in the LICENSE file. // SPDX-License-Identifier: MIT + package tasks import ( diff --git a/internal/tasks/registry.go b/internal/tasks/registry.go index eab8efb..873e0c8 100644 --- a/internal/tasks/registry.go +++ b/internal/tasks/registry.go @@ -1,7 +1,8 @@ -// Copyright 2023 Louis Royer and the NextMN-SRv6 contributors. All rights reserved. +// Copyright 2023 Louis Royer and the NextMN contributors. All rights reserved. // Use of this source code is governed by a MIT-style license that can be // found in the LICENSE file. // SPDX-License-Identifier: MIT + package tasks import ( diff --git a/internal/tasks/single-hook.go b/internal/tasks/single-hook.go index 8c47eba..00df403 100644 --- a/internal/tasks/single-hook.go +++ b/internal/tasks/single-hook.go @@ -1,7 +1,8 @@ -// Copyright 2023 Louis Royer and the NextMN-SRv6 contributors. All rights reserved. +// Copyright 2023 Louis Royer and the NextMN contributors. All rights reserved. // Use of this source code is governed by a MIT-style license that can be // found in the LICENSE file. // SPDX-License-Identifier: MIT + package tasks import ( diff --git a/internal/tasks/tun-iface.go b/internal/tasks/tun-iface.go index 8db493f..54cb05c 100644 --- a/internal/tasks/tun-iface.go +++ b/internal/tasks/tun-iface.go @@ -1,7 +1,8 @@ -// Copyright 2023 Louis Royer and the NextMN-SRv6 contributors. All rights reserved. +// Copyright 2023 Louis Royer and the NextMN contributors. All rights reserved. // Use of this source code is governed by a MIT-style license that can be // found in the LICENSE file. // SPDX-License-Identifier: MIT + package tasks import ( diff --git a/internal/tasks/with-name.go b/internal/tasks/with-name.go index 3b38b32..316dcbd 100644 --- a/internal/tasks/with-name.go +++ b/internal/tasks/with-name.go @@ -1,7 +1,8 @@ -// Copyright 2023 Louis Royer and the NextMN-SRv6 contributors. All rights reserved. +// Copyright 2023 Louis Royer and the NextMN contributors. All rights reserved. // Use of this source code is governed by a MIT-style license that can be // found in the LICENSE file. // SPDX-License-Identifier: MIT + package tasks import "fmt" diff --git a/internal/tasks/with-state.go b/internal/tasks/with-state.go index e917652..d2eba0a 100644 --- a/internal/tasks/with-state.go +++ b/internal/tasks/with-state.go @@ -1,7 +1,8 @@ -// Copyright 2023 Louis Royer and the NextMN-SRv6 contributors. All rights reserved. +// Copyright 2023 Louis Royer and the NextMN contributors. All rights reserved. // Use of this source code is governed by a MIT-style license that can be // found in the LICENSE file. // SPDX-License-Identifier: MIT + package tasks type WithState struct { diff --git a/main.go b/main.go index aeec782..9723343 100644 --- a/main.go +++ b/main.go @@ -1,7 +1,8 @@ -// Copyright 2023 Louis Royer and the NextMN-SRv6 contributors. All rights reserved. +// Copyright 2023 Louis Royer and the NextMN contributors. All rights reserved. // Use of this source code is governed by a MIT-style license that can be // found in the LICENSE file. // SPDX-License-Identifier: MIT + package main import (