summaryrefslogtreecommitdiffhomepage
path: root/NetEx
diff options
context:
space:
mode:
authorAki <please@ignore.pl>2024-03-12 22:07:03 +0100
committerAki <please@ignore.pl>2024-03-12 22:07:36 +0100
commit81bb6873f1c0291fecbf6e429ad15ac3db66a4c0 (patch)
treefd7552ecabeeffb45a1fbe3730ab62bc7a64dd85 /NetEx
parentf43d32d6d2cc7ecd04f4f06f20d5a6fc2c87c9ae (diff)
downloadstarshatter-81bb6873f1c0291fecbf6e429ad15ac3db66a4c0.zip
starshatter-81bb6873f1c0291fecbf6e429ad15ac3db66a4c0.tar.gz
starshatter-81bb6873f1c0291fecbf6e429ad15ac3db66a4c0.tar.bz2
Legal notices updated
Rename contrib -> third-party intendes to express the origin and purpose of that part of the code better. I plan to readd contrib/ again but with more in-project things like bash-completions, dev workflow scripts etc.
Diffstat (limited to 'NetEx')
-rw-r--r--NetEx/HttpClient.cpp2
-rw-r--r--NetEx/HttpClient.h2
-rw-r--r--NetEx/HttpParam.cpp2
-rw-r--r--NetEx/HttpParam.h2
-rw-r--r--NetEx/HttpRequest.cpp2
-rw-r--r--NetEx/HttpRequest.h2
-rw-r--r--NetEx/HttpResponse.cpp2
-rw-r--r--NetEx/HttpResponse.h2
-rw-r--r--NetEx/HttpServer.cpp2
-rw-r--r--NetEx/HttpServer.h2
-rw-r--r--NetEx/HttpServlet.cpp2
-rw-r--r--NetEx/HttpServlet.h2
-rw-r--r--NetEx/HttpServletExec.cpp2
-rw-r--r--NetEx/HttpServletExec.h2
-rw-r--r--NetEx/HttpSession.cpp2
-rw-r--r--NetEx/HttpSession.h2
-rw-r--r--NetEx/NetAddr.cpp2
-rw-r--r--NetEx/NetAddr.h2
-rw-r--r--NetEx/NetClient.cpp2
-rw-r--r--NetEx/NetClient.h2
-rw-r--r--NetEx/NetGram.cpp2
-rw-r--r--NetEx/NetGram.h2
-rw-r--r--NetEx/NetHost.cpp2
-rw-r--r--NetEx/NetHost.h2
-rw-r--r--NetEx/NetLayer.cpp2
-rw-r--r--NetEx/NetLayer.h2
-rw-r--r--NetEx/NetLink.cpp2
-rw-r--r--NetEx/NetLink.h2
-rw-r--r--NetEx/NetMsg.cpp2
-rw-r--r--NetEx/NetMsg.h2
-rw-r--r--NetEx/NetPeer.cpp2
-rw-r--r--NetEx/NetPeer.h2
-rw-r--r--NetEx/NetServer.cpp2
-rw-r--r--NetEx/NetServer.h2
-rw-r--r--NetEx/NetSock.cpp2
-rw-r--r--NetEx/NetSock.h2
36 files changed, 36 insertions, 36 deletions
diff --git a/NetEx/HttpClient.cpp b/NetEx/HttpClient.cpp
index 642ebe3..3bd168f 100644
--- a/NetEx/HttpClient.cpp
+++ b/NetEx/HttpClient.cpp
@@ -1,5 +1,5 @@
/* Starshatter: The Open Source Project
- Copyright (c) 2021-2022, Starshatter: The Open Source Project Contributors
+ Copyright (c) 2021-2024, Starshatter: The Open Source Project Contributors
Copyright (c) 2011-2012, Starshatter OpenSource Distribution Contributors
Copyright (c) 1997-2006, Destroyer Studios LLC.
diff --git a/NetEx/HttpClient.h b/NetEx/HttpClient.h
index cded234..442329c 100644
--- a/NetEx/HttpClient.h
+++ b/NetEx/HttpClient.h
@@ -1,5 +1,5 @@
/* Starshatter: The Open Source Project
- Copyright (c) 2021-2022, Starshatter: The Open Source Project Contributors
+ Copyright (c) 2021-2024, Starshatter: The Open Source Project Contributors
Copyright (c) 2011-2012, Starshatter OpenSource Distribution Contributors
Copyright (c) 1997-2006, Destroyer Studios LLC.
diff --git a/NetEx/HttpParam.cpp b/NetEx/HttpParam.cpp
index 933e01a..91113e0 100644
--- a/NetEx/HttpParam.cpp
+++ b/NetEx/HttpParam.cpp
@@ -1,5 +1,5 @@
/* Starshatter: The Open Source Project
- Copyright (c) 2021-2022, Starshatter: The Open Source Project Contributors
+ Copyright (c) 2021-2024, Starshatter: The Open Source Project Contributors
Copyright (c) 2011-2012, Starshatter OpenSource Distribution Contributors
Copyright (c) 1997-2006, Destroyer Studios LLC.
*/
diff --git a/NetEx/HttpParam.h b/NetEx/HttpParam.h
index 8d84296..7747315 100644
--- a/NetEx/HttpParam.h
+++ b/NetEx/HttpParam.h
@@ -1,5 +1,5 @@
/* Starshatter: The Open Source Project
- Copyright (c) 2021-2022, Starshatter: The Open Source Project Contributors
+ Copyright (c) 2021-2024, Starshatter: The Open Source Project Contributors
Copyright (c) 2011-2012, Starshatter OpenSource Distribution Contributors
Copyright (c) 1997-2006, Destroyer Studios LLC.
*/
diff --git a/NetEx/HttpRequest.cpp b/NetEx/HttpRequest.cpp
index 12f6b1b..b947f1c 100644
--- a/NetEx/HttpRequest.cpp
+++ b/NetEx/HttpRequest.cpp
@@ -1,5 +1,5 @@
/* Starshatter: The Open Source Project
- Copyright (c) 2021-2022, Starshatter: The Open Source Project Contributors
+ Copyright (c) 2021-2024, Starshatter: The Open Source Project Contributors
Copyright (c) 2011-2012, Starshatter OpenSource Distribution Contributors
Copyright (c) 1997-2006, Destroyer Studios LLC.
*/
diff --git a/NetEx/HttpRequest.h b/NetEx/HttpRequest.h
index 10bfc77..861cd2f 100644
--- a/NetEx/HttpRequest.h
+++ b/NetEx/HttpRequest.h
@@ -1,5 +1,5 @@
/* Starshatter: The Open Source Project
- Copyright (c) 2021-2022, Starshatter: The Open Source Project Contributors
+ Copyright (c) 2021-2024, Starshatter: The Open Source Project Contributors
Copyright (c) 2011-2012, Starshatter OpenSource Distribution Contributors
Copyright (c) 1997-2006, Destroyer Studios LLC.
*/
diff --git a/NetEx/HttpResponse.cpp b/NetEx/HttpResponse.cpp
index 65b7e5d..afe190f 100644
--- a/NetEx/HttpResponse.cpp
+++ b/NetEx/HttpResponse.cpp
@@ -1,5 +1,5 @@
/* Starshatter: The Open Source Project
- Copyright (c) 2021-2022, Starshatter: The Open Source Project Contributors
+ Copyright (c) 2021-2024, Starshatter: The Open Source Project Contributors
Copyright (c) 2011-2012, Starshatter OpenSource Distribution Contributors
Copyright (c) 1997-2006, Destroyer Studios LLC.
*/
diff --git a/NetEx/HttpResponse.h b/NetEx/HttpResponse.h
index cd53fcb..0b8d862 100644
--- a/NetEx/HttpResponse.h
+++ b/NetEx/HttpResponse.h
@@ -1,5 +1,5 @@
/* Starshatter: The Open Source Project
- Copyright (c) 2021-2022, Starshatter: The Open Source Project Contributors
+ Copyright (c) 2021-2024, Starshatter: The Open Source Project Contributors
Copyright (c) 2011-2012, Starshatter OpenSource Distribution Contributors
Copyright (c) 1997-2006, Destroyer Studios LLC.
*/
diff --git a/NetEx/HttpServer.cpp b/NetEx/HttpServer.cpp
index e38612c..cc4b58d 100644
--- a/NetEx/HttpServer.cpp
+++ b/NetEx/HttpServer.cpp
@@ -1,5 +1,5 @@
/* Starshatter: The Open Source Project
- Copyright (c) 2021-2022, Starshatter: The Open Source Project Contributors
+ Copyright (c) 2021-2024, Starshatter: The Open Source Project Contributors
Copyright (c) 2011-2012, Starshatter OpenSource Distribution Contributors
Copyright (c) 1997-2006, Destroyer Studios LLC.
diff --git a/NetEx/HttpServer.h b/NetEx/HttpServer.h
index 88c1c3c..eb7ec03 100644
--- a/NetEx/HttpServer.h
+++ b/NetEx/HttpServer.h
@@ -1,5 +1,5 @@
/* Starshatter: The Open Source Project
- Copyright (c) 2021-2022, Starshatter: The Open Source Project Contributors
+ Copyright (c) 2021-2024, Starshatter: The Open Source Project Contributors
Copyright (c) 2011-2012, Starshatter OpenSource Distribution Contributors
Copyright (c) 1997-2006, Destroyer Studios LLC.
diff --git a/NetEx/HttpServlet.cpp b/NetEx/HttpServlet.cpp
index 150719c..836985b 100644
--- a/NetEx/HttpServlet.cpp
+++ b/NetEx/HttpServlet.cpp
@@ -1,5 +1,5 @@
/* Starshatter: The Open Source Project
- Copyright (c) 2021-2022, Starshatter: The Open Source Project Contributors
+ Copyright (c) 2021-2024, Starshatter: The Open Source Project Contributors
Copyright (c) 2011-2012, Starshatter OpenSource Distribution Contributors
Copyright (c) 1997-2006, Destroyer Studios LLC.
diff --git a/NetEx/HttpServlet.h b/NetEx/HttpServlet.h
index eb706ea..962252e 100644
--- a/NetEx/HttpServlet.h
+++ b/NetEx/HttpServlet.h
@@ -1,5 +1,5 @@
/* Starshatter: The Open Source Project
- Copyright (c) 2021-2022, Starshatter: The Open Source Project Contributors
+ Copyright (c) 2021-2024, Starshatter: The Open Source Project Contributors
Copyright (c) 2011-2012, Starshatter OpenSource Distribution Contributors
Copyright (c) 1997-2006, Destroyer Studios LLC.
diff --git a/NetEx/HttpServletExec.cpp b/NetEx/HttpServletExec.cpp
index c64df85..4371957 100644
--- a/NetEx/HttpServletExec.cpp
+++ b/NetEx/HttpServletExec.cpp
@@ -1,5 +1,5 @@
/* Starshatter: The Open Source Project
- Copyright (c) 2021-2022, Starshatter: The Open Source Project Contributors
+ Copyright (c) 2021-2024, Starshatter: The Open Source Project Contributors
Copyright (c) 2011-2012, Starshatter OpenSource Distribution Contributors
Copyright (c) 1997-2006, Destroyer Studios LLC.
diff --git a/NetEx/HttpServletExec.h b/NetEx/HttpServletExec.h
index 8f06d73..9ee398a 100644
--- a/NetEx/HttpServletExec.h
+++ b/NetEx/HttpServletExec.h
@@ -1,5 +1,5 @@
/* Starshatter: The Open Source Project
- Copyright (c) 2021-2022, Starshatter: The Open Source Project Contributors
+ Copyright (c) 2021-2024, Starshatter: The Open Source Project Contributors
Copyright (c) 2011-2012, Starshatter OpenSource Distribution Contributors
Copyright (c) 1997-2006, Destroyer Studios LLC.
diff --git a/NetEx/HttpSession.cpp b/NetEx/HttpSession.cpp
index 577b1e3..78f42aa 100644
--- a/NetEx/HttpSession.cpp
+++ b/NetEx/HttpSession.cpp
@@ -1,5 +1,5 @@
/* Starshatter: The Open Source Project
- Copyright (c) 2021-2022, Starshatter: The Open Source Project Contributors
+ Copyright (c) 2021-2024, Starshatter: The Open Source Project Contributors
Copyright (c) 2011-2012, Starshatter OpenSource Distribution Contributors
Copyright (c) 1997-2006, Destroyer Studios LLC.
*/
diff --git a/NetEx/HttpSession.h b/NetEx/HttpSession.h
index e8d67f8..ebc09bb 100644
--- a/NetEx/HttpSession.h
+++ b/NetEx/HttpSession.h
@@ -1,5 +1,5 @@
/* Starshatter: The Open Source Project
- Copyright (c) 2021-2022, Starshatter: The Open Source Project Contributors
+ Copyright (c) 2021-2024, Starshatter: The Open Source Project Contributors
Copyright (c) 2011-2012, Starshatter OpenSource Distribution Contributors
Copyright (c) 1997-2006, Destroyer Studios LLC.
*/
diff --git a/NetEx/NetAddr.cpp b/NetEx/NetAddr.cpp
index 5e5468d..0262d5f 100644
--- a/NetEx/NetAddr.cpp
+++ b/NetEx/NetAddr.cpp
@@ -1,5 +1,5 @@
/* Starshatter: The Open Source Project
- Copyright (c) 2021-2022, Starshatter: The Open Source Project Contributors
+ Copyright (c) 2021-2024, Starshatter: The Open Source Project Contributors
Copyright (c) 2011-2012, Starshatter OpenSource Distribution Contributors
Copyright (c) 1997-2006, Destroyer Studios LLC.
diff --git a/NetEx/NetAddr.h b/NetEx/NetAddr.h
index 1b69c25..df6ba64 100644
--- a/NetEx/NetAddr.h
+++ b/NetEx/NetAddr.h
@@ -1,5 +1,5 @@
/* Starshatter: The Open Source Project
- Copyright (c) 2021-2022, Starshatter: The Open Source Project Contributors
+ Copyright (c) 2021-2024, Starshatter: The Open Source Project Contributors
Copyright (c) 2011-2012, Starshatter OpenSource Distribution Contributors
Copyright (c) 1997-2006, Destroyer Studios LLC.
diff --git a/NetEx/NetClient.cpp b/NetEx/NetClient.cpp
index 7a62160..ff02cbe 100644
--- a/NetEx/NetClient.cpp
+++ b/NetEx/NetClient.cpp
@@ -1,5 +1,5 @@
/* Starshatter: The Open Source Project
- Copyright (c) 2021-2022, Starshatter: The Open Source Project Contributors
+ Copyright (c) 2021-2024, Starshatter: The Open Source Project Contributors
Copyright (c) 2011-2012, Starshatter OpenSource Distribution Contributors
Copyright (c) 1997-2006, Destroyer Studios LLC.
diff --git a/NetEx/NetClient.h b/NetEx/NetClient.h
index db5543d..9e53d11 100644
--- a/NetEx/NetClient.h
+++ b/NetEx/NetClient.h
@@ -1,5 +1,5 @@
/* Starshatter: The Open Source Project
- Copyright (c) 2021-2022, Starshatter: The Open Source Project Contributors
+ Copyright (c) 2021-2024, Starshatter: The Open Source Project Contributors
Copyright (c) 2011-2012, Starshatter OpenSource Distribution Contributors
Copyright (c) 1997-2006, Destroyer Studios LLC.
diff --git a/NetEx/NetGram.cpp b/NetEx/NetGram.cpp
index 5394df2..6aebadc 100644
--- a/NetEx/NetGram.cpp
+++ b/NetEx/NetGram.cpp
@@ -1,5 +1,5 @@
/* Starshatter: The Open Source Project
- Copyright (c) 2021-2022, Starshatter: The Open Source Project Contributors
+ Copyright (c) 2021-2024, Starshatter: The Open Source Project Contributors
Copyright (c) 2011-2012, Starshatter OpenSource Distribution Contributors
Copyright (c) 1997-2006, Destroyer Studios LLC.
diff --git a/NetEx/NetGram.h b/NetEx/NetGram.h
index d7a58c9..91e1871 100644
--- a/NetEx/NetGram.h
+++ b/NetEx/NetGram.h
@@ -1,5 +1,5 @@
/* Starshatter: The Open Source Project
- Copyright (c) 2021-2022, Starshatter: The Open Source Project Contributors
+ Copyright (c) 2021-2024, Starshatter: The Open Source Project Contributors
Copyright (c) 2011-2012, Starshatter OpenSource Distribution Contributors
Copyright (c) 1997-2006, Destroyer Studios LLC.
diff --git a/NetEx/NetHost.cpp b/NetEx/NetHost.cpp
index 4c8c89f..00695fd 100644
--- a/NetEx/NetHost.cpp
+++ b/NetEx/NetHost.cpp
@@ -1,5 +1,5 @@
/* Starshatter: The Open Source Project
- Copyright (c) 2021-2022, Starshatter: The Open Source Project Contributors
+ Copyright (c) 2021-2024, Starshatter: The Open Source Project Contributors
Copyright (c) 2011-2012, Starshatter OpenSource Distribution Contributors
Copyright (c) 1997-2006, Destroyer Studios LLC.
diff --git a/NetEx/NetHost.h b/NetEx/NetHost.h
index c45f04c..4d2783e 100644
--- a/NetEx/NetHost.h
+++ b/NetEx/NetHost.h
@@ -1,5 +1,5 @@
/* Starshatter: The Open Source Project
- Copyright (c) 2021-2022, Starshatter: The Open Source Project Contributors
+ Copyright (c) 2021-2024, Starshatter: The Open Source Project Contributors
Copyright (c) 2011-2012, Starshatter OpenSource Distribution Contributors
Copyright (c) 1997-2006, Destroyer Studios LLC.
diff --git a/NetEx/NetLayer.cpp b/NetEx/NetLayer.cpp
index 5992fbe..cf0dfd0 100644
--- a/NetEx/NetLayer.cpp
+++ b/NetEx/NetLayer.cpp
@@ -1,5 +1,5 @@
/* Starshatter: The Open Source Project
- Copyright (c) 2021-2022, Starshatter: The Open Source Project Contributors
+ Copyright (c) 2021-2024, Starshatter: The Open Source Project Contributors
Copyright (c) 2011-2012, Starshatter OpenSource Distribution Contributors
Copyright (c) 1997-2006, Destroyer Studios LLC.
diff --git a/NetEx/NetLayer.h b/NetEx/NetLayer.h
index 0ffb197..73e7728 100644
--- a/NetEx/NetLayer.h
+++ b/NetEx/NetLayer.h
@@ -1,5 +1,5 @@
/* Starshatter: The Open Source Project
- Copyright (c) 2021-2022, Starshatter: The Open Source Project Contributors
+ Copyright (c) 2021-2024, Starshatter: The Open Source Project Contributors
Copyright (c) 2011-2012, Starshatter OpenSource Distribution Contributors
Copyright (c) 1997-2006, Destroyer Studios LLC.
diff --git a/NetEx/NetLink.cpp b/NetEx/NetLink.cpp
index 37ca318..0319a73 100644
--- a/NetEx/NetLink.cpp
+++ b/NetEx/NetLink.cpp
@@ -1,5 +1,5 @@
/* Starshatter: The Open Source Project
- Copyright (c) 2021-2022, Starshatter: The Open Source Project Contributors
+ Copyright (c) 2021-2024, Starshatter: The Open Source Project Contributors
Copyright (c) 2011-2012, Starshatter OpenSource Distribution Contributors
Copyright (c) 1997-2006, Destroyer Studios LLC.
diff --git a/NetEx/NetLink.h b/NetEx/NetLink.h
index 5f5d081..9266477 100644
--- a/NetEx/NetLink.h
+++ b/NetEx/NetLink.h
@@ -1,5 +1,5 @@
/* Starshatter: The Open Source Project
- Copyright (c) 2021-2022, Starshatter: The Open Source Project Contributors
+ Copyright (c) 2021-2024, Starshatter: The Open Source Project Contributors
Copyright (c) 2011-2012, Starshatter OpenSource Distribution Contributors
Copyright (c) 1997-2006, Destroyer Studios LLC.
diff --git a/NetEx/NetMsg.cpp b/NetEx/NetMsg.cpp
index 4e775da..407fa4f 100644
--- a/NetEx/NetMsg.cpp
+++ b/NetEx/NetMsg.cpp
@@ -1,5 +1,5 @@
/* Starshatter: The Open Source Project
- Copyright (c) 2021-2022, Starshatter: The Open Source Project Contributors
+ Copyright (c) 2021-2024, Starshatter: The Open Source Project Contributors
Copyright (c) 2011-2012, Starshatter OpenSource Distribution Contributors
Copyright (c) 1997-2006, Destroyer Studios LLC.
diff --git a/NetEx/NetMsg.h b/NetEx/NetMsg.h
index 4e1cf18..fd4850c 100644
--- a/NetEx/NetMsg.h
+++ b/NetEx/NetMsg.h
@@ -1,5 +1,5 @@
/* Starshatter: The Open Source Project
- Copyright (c) 2021-2022, Starshatter: The Open Source Project Contributors
+ Copyright (c) 2021-2024, Starshatter: The Open Source Project Contributors
Copyright (c) 2011-2012, Starshatter OpenSource Distribution Contributors
Copyright (c) 1997-2006, Destroyer Studios LLC.
diff --git a/NetEx/NetPeer.cpp b/NetEx/NetPeer.cpp
index 34adbbc..ea8217c 100644
--- a/NetEx/NetPeer.cpp
+++ b/NetEx/NetPeer.cpp
@@ -1,5 +1,5 @@
/* Starshatter: The Open Source Project
- Copyright (c) 2021-2022, Starshatter: The Open Source Project Contributors
+ Copyright (c) 2021-2024, Starshatter: The Open Source Project Contributors
Copyright (c) 2011-2012, Starshatter OpenSource Distribution Contributors
Copyright (c) 1997-2006, Destroyer Studios LLC.
diff --git a/NetEx/NetPeer.h b/NetEx/NetPeer.h
index 1ce273e..2c72a77 100644
--- a/NetEx/NetPeer.h
+++ b/NetEx/NetPeer.h
@@ -1,5 +1,5 @@
/* Starshatter: The Open Source Project
- Copyright (c) 2021-2022, Starshatter: The Open Source Project Contributors
+ Copyright (c) 2021-2024, Starshatter: The Open Source Project Contributors
Copyright (c) 2011-2012, Starshatter OpenSource Distribution Contributors
Copyright (c) 1997-2006, Destroyer Studios LLC.
diff --git a/NetEx/NetServer.cpp b/NetEx/NetServer.cpp
index 7357928..a9986be 100644
--- a/NetEx/NetServer.cpp
+++ b/NetEx/NetServer.cpp
@@ -1,5 +1,5 @@
/* Starshatter: The Open Source Project
- Copyright (c) 2021-2022, Starshatter: The Open Source Project Contributors
+ Copyright (c) 2021-2024, Starshatter: The Open Source Project Contributors
Copyright (c) 2011-2012, Starshatter OpenSource Distribution Contributors
Copyright (c) 1997-2006, Destroyer Studios LLC.
diff --git a/NetEx/NetServer.h b/NetEx/NetServer.h
index 1fcc938..db2ca71 100644
--- a/NetEx/NetServer.h
+++ b/NetEx/NetServer.h
@@ -1,5 +1,5 @@
/* Starshatter: The Open Source Project
- Copyright (c) 2021-2022, Starshatter: The Open Source Project Contributors
+ Copyright (c) 2021-2024, Starshatter: The Open Source Project Contributors
Copyright (c) 2011-2012, Starshatter OpenSource Distribution Contributors
Copyright (c) 1997-2006, Destroyer Studios LLC.
diff --git a/NetEx/NetSock.cpp b/NetEx/NetSock.cpp
index 12778b7..af4eba9 100644
--- a/NetEx/NetSock.cpp
+++ b/NetEx/NetSock.cpp
@@ -1,5 +1,5 @@
/* Starshatter: The Open Source Project
- Copyright (c) 2021-2022, Starshatter: The Open Source Project Contributors
+ Copyright (c) 2021-2024, Starshatter: The Open Source Project Contributors
Copyright (c) 2011-2012, Starshatter OpenSource Distribution Contributors
Copyright (c) 1997-2006, Destroyer Studios LLC.
diff --git a/NetEx/NetSock.h b/NetEx/NetSock.h
index b483220..5bbf2ca 100644
--- a/NetEx/NetSock.h
+++ b/NetEx/NetSock.h
@@ -1,5 +1,5 @@
/* Starshatter: The Open Source Project
- Copyright (c) 2021-2022, Starshatter: The Open Source Project Contributors
+ Copyright (c) 2021-2024, Starshatter: The Open Source Project Contributors
Copyright (c) 2011-2012, Starshatter OpenSource Distribution Contributors
Copyright (c) 1997-2006, Destroyer Studios LLC.