aboutsummaryrefslogtreecommitdiff
path: root/Plugins
diff options
context:
space:
mode:
Diffstat (limited to 'Plugins')
-rw-r--r--Plugins/CacheBroker/CacheBrokerEntry.cs26
-rw-r--r--Plugins/CacheBroker/Endpoints/BrokerRegistrationEndpoint.cs26
-rw-r--r--Plugins/SessionCacheServer/Endpoints/BrokerHeartBeat.cs26
-rw-r--r--Plugins/SessionCacheServer/Endpoints/ConnectEndpoint.cs26
-rw-r--r--Plugins/SessionCacheServer/SessionServerEntrypoint.cs26
-rw-r--r--Plugins/SessionProvider/GlobalCache.cs26
-rw-r--r--Plugins/SessionProvider/LocalizedLogProvider.cs26
-rw-r--r--Plugins/SessionProvider/SessionClientEntryPoint.cs26
8 files changed, 200 insertions, 8 deletions
diff --git a/Plugins/CacheBroker/CacheBrokerEntry.cs b/Plugins/CacheBroker/CacheBrokerEntry.cs
index 762f66b..876e030 100644
--- a/Plugins/CacheBroker/CacheBrokerEntry.cs
+++ b/Plugins/CacheBroker/CacheBrokerEntry.cs
@@ -1,4 +1,28 @@
-using System;
+/*
+* Copyright (c) 2022 Vaughn Nugent
+*
+* Library: VNLib
+* Package: CacheBroker
+* File: CacheBrokerEntry.cs
+*
+* CacheBrokerEntry.cs is part of CacheBroker which is part of the larger
+* VNLib collection of libraries and utilities.
+*
+* CacheBroker is free software: you can redistribute it and/or modify
+* it under the terms of the GNU General Public License as published
+* by the Free Software Foundation, either version 2 of the License,
+* or (at your option) any later version.
+*
+* CacheBroker is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+* General Public License for more details.
+*
+* You should have received a copy of the GNU General Public License
+* along with CacheBroker. If not, see http://www.gnu.org/licenses/.
+*/
+
+using System;
using System.IO;
using System.Collections.Generic;
diff --git a/Plugins/CacheBroker/Endpoints/BrokerRegistrationEndpoint.cs b/Plugins/CacheBroker/Endpoints/BrokerRegistrationEndpoint.cs
index 14e2ba6..1c8cd5a 100644
--- a/Plugins/CacheBroker/Endpoints/BrokerRegistrationEndpoint.cs
+++ b/Plugins/CacheBroker/Endpoints/BrokerRegistrationEndpoint.cs
@@ -1,4 +1,28 @@
-using System;
+/*
+* Copyright (c) 2022 Vaughn Nugent
+*
+* Library: VNLib
+* Package: CacheBroker
+* File: BrokerRegistrationEndpoint.cs
+*
+* BrokerRegistrationEndpoint.cs is part of CacheBroker which is part of the larger
+* VNLib collection of libraries and utilities.
+*
+* CacheBroker is free software: you can redistribute it and/or modify
+* it under the terms of the GNU General Public License as published
+* by the Free Software Foundation, either version 2 of the License,
+* or (at your option) any later version.
+*
+* CacheBroker is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+* General Public License for more details.
+*
+* You should have received a copy of the GNU General Public License
+* along with CacheBroker. If not, see http://www.gnu.org/licenses/.
+*/
+
+using System;
using System.IO;
using System.Linq;
using System.Text;
diff --git a/Plugins/SessionCacheServer/Endpoints/BrokerHeartBeat.cs b/Plugins/SessionCacheServer/Endpoints/BrokerHeartBeat.cs
index d501fca..dc31575 100644
--- a/Plugins/SessionCacheServer/Endpoints/BrokerHeartBeat.cs
+++ b/Plugins/SessionCacheServer/Endpoints/BrokerHeartBeat.cs
@@ -1,4 +1,28 @@
-using System;
+/*
+* Copyright (c) 2022 Vaughn Nugent
+*
+* Library: VNLib
+* Package: SessionCacheServer
+* File: BrokerHeartBeat.cs
+*
+* BrokerHeartBeat.cs is part of SessionCacheServer which is part of the larger
+* VNLib collection of libraries and utilities.
+*
+* SessionCacheServer is free software: you can redistribute it and/or modify
+* it under the terms of the GNU General Public License as published
+* by the Free Software Foundation, either version 2 of the License,
+* or (at your option) any later version.
+*
+* SessionCacheServer is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+* General Public License for more details.
+*
+* You should have received a copy of the GNU General Public License
+* along with SessionCacheServer. If not, see http://www.gnu.org/licenses/.
+*/
+
+using System;
using System.Net;
using System.Linq;
using System.Text.Json;
diff --git a/Plugins/SessionCacheServer/Endpoints/ConnectEndpoint.cs b/Plugins/SessionCacheServer/Endpoints/ConnectEndpoint.cs
index bb5fcac..56c7036 100644
--- a/Plugins/SessionCacheServer/Endpoints/ConnectEndpoint.cs
+++ b/Plugins/SessionCacheServer/Endpoints/ConnectEndpoint.cs
@@ -1,4 +1,28 @@
-using System;
+/*
+* Copyright (c) 2022 Vaughn Nugent
+*
+* Library: VNLib
+* Package: SessionCacheServer
+* File: ConnectEndpoint.cs
+*
+* ConnectEndpoint.cs is part of SessionCacheServer which is part of the larger
+* VNLib collection of libraries and utilities.
+*
+* SessionCacheServer is free software: you can redistribute it and/or modify
+* it under the terms of the GNU General Public License as published
+* by the Free Software Foundation, either version 2 of the License,
+* or (at your option) any later version.
+*
+* SessionCacheServer is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+* General Public License for more details.
+*
+* You should have received a copy of the GNU General Public License
+* along with SessionCacheServer. If not, see http://www.gnu.org/licenses/.
+*/
+
+using System;
using System.Net;
using System.Text;
using System.Text.Json;
diff --git a/Plugins/SessionCacheServer/SessionServerEntrypoint.cs b/Plugins/SessionCacheServer/SessionServerEntrypoint.cs
index 4d00c8d..c7b0914 100644
--- a/Plugins/SessionCacheServer/SessionServerEntrypoint.cs
+++ b/Plugins/SessionCacheServer/SessionServerEntrypoint.cs
@@ -1,4 +1,28 @@
-using System;
+/*
+* Copyright (c) 2022 Vaughn Nugent
+*
+* Library: VNLib
+* Package: SessionCacheServer
+* File: SessionServerEntrypoint.cs
+*
+* SessionServerEntrypoint.cs is part of SessionCacheServer which is part of the larger
+* VNLib collection of libraries and utilities.
+*
+* SessionCacheServer is free software: you can redistribute it and/or modify
+* it under the terms of the GNU General Public License as published
+* by the Free Software Foundation, either version 2 of the License,
+* or (at your option) any later version.
+*
+* SessionCacheServer is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+* General Public License for more details.
+*
+* You should have received a copy of the GNU General Public License
+* along with SessionCacheServer. If not, see http://www.gnu.org/licenses/.
+*/
+
+using System;
using System.IO;
using System.Net;
using System.Linq;
diff --git a/Plugins/SessionProvider/GlobalCache.cs b/Plugins/SessionProvider/GlobalCache.cs
index ff16f47..c060f82 100644
--- a/Plugins/SessionProvider/GlobalCache.cs
+++ b/Plugins/SessionProvider/GlobalCache.cs
@@ -1,4 +1,28 @@
-using System;
+/*
+* Copyright (c) 2022 Vaughn Nugent
+*
+* Library: VNLib
+* Package: SessionProvider
+* File: GlobalCache.cs
+*
+* GlobalCache.cs is part of SessionProvider which is part of the larger
+* VNLib collection of libraries and utilities.
+*
+* SessionProvider is free software: you can redistribute it and/or modify
+* it under the terms of the GNU General Public License as published
+* by the Free Software Foundation, either version 2 of the License,
+* or (at your option) any later version.
+*
+* SessionProvider is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+* General Public License for more details.
+*
+* You should have received a copy of the GNU General Public License
+* along with SessionProvider. If not, see http://www.gnu.org/licenses/.
+*/
+
+using System;
using System.Threading;
using System.Threading.Tasks;
diff --git a/Plugins/SessionProvider/LocalizedLogProvider.cs b/Plugins/SessionProvider/LocalizedLogProvider.cs
index 2bd9bc4..6fc3ee3 100644
--- a/Plugins/SessionProvider/LocalizedLogProvider.cs
+++ b/Plugins/SessionProvider/LocalizedLogProvider.cs
@@ -1,4 +1,28 @@
-using System;
+/*
+* Copyright (c) 2022 Vaughn Nugent
+*
+* Library: VNLib
+* Package: SessionProvider
+* File: LocalizedLogProvider.cs
+*
+* LocalizedLogProvider.cs is part of SessionProvider which is part of the larger
+* VNLib collection of libraries and utilities.
+*
+* SessionProvider is free software: you can redistribute it and/or modify
+* it under the terms of the GNU General Public License as published
+* by the Free Software Foundation, either version 2 of the License,
+* or (at your option) any later version.
+*
+* SessionProvider is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+* General Public License for more details.
+*
+* You should have received a copy of the GNU General Public License
+* along with SessionProvider. If not, see http://www.gnu.org/licenses/.
+*/
+
+using System;
using VNLib.Utils.Logging;
diff --git a/Plugins/SessionProvider/SessionClientEntryPoint.cs b/Plugins/SessionProvider/SessionClientEntryPoint.cs
index ed62d4c..4be9c55 100644
--- a/Plugins/SessionProvider/SessionClientEntryPoint.cs
+++ b/Plugins/SessionProvider/SessionClientEntryPoint.cs
@@ -1,4 +1,28 @@
-using System;
+/*
+* Copyright (c) 2022 Vaughn Nugent
+*
+* Library: VNLib
+* Package: SessionProvider
+* File: SessionClientEntryPoint.cs
+*
+* SessionClientEntryPoint.cs is part of SessionProvider which is part of the larger
+* VNLib collection of libraries and utilities.
+*
+* SessionProvider is free software: you can redistribute it and/or modify
+* it under the terms of the GNU General Public License as published
+* by the Free Software Foundation, either version 2 of the License,
+* or (at your option) any later version.
+*
+* SessionProvider is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+* General Public License for more details.
+*
+* You should have received a copy of the GNU General Public License
+* along with SessionProvider. If not, see http://www.gnu.org/licenses/.
+*/
+
+using System;
using System.IO;
using System.Linq;
using System.Threading;