summaryrefslogtreecommitdiffhomepage
path: root/src/socket
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2021-08-20 00:00:00 +0000
committermidipix <writeonce@midipix.org>2021-12-30 10:53:44 +0000
commit64e60696fd9cf2e8e672cebd1ed8b52b9b542606 (patch)
tree566aa578745e32a6d230fb0cc71862203125d57d /src/socket
parent59d585822cc76b586f64c98d4e940f080ff3e91c (diff)
downloadntapi-64e60696fd9cf2e8e672cebd1ed8b52b9b542606.tar.bz2
ntapi-64e60696fd9cf2e8e672cebd1ed8b52b9b542606.tar.xz
A new home.
Diffstat (limited to 'src/socket')
-rw-r--r--src/socket/ntapi_sc_accept.c2
-rw-r--r--src/socket/ntapi_sc_bind_v1.c2
-rw-r--r--src/socket/ntapi_sc_bind_v2.c2
-rw-r--r--src/socket/ntapi_sc_connect_v1.c2
-rw-r--r--src/socket/ntapi_sc_connect_v2.c2
-rw-r--r--src/socket/ntapi_sc_getpeername_v1.c2
-rw-r--r--src/socket/ntapi_sc_getpeername_v2.c2
-rw-r--r--src/socket/ntapi_sc_getsockname_v1.c2
-rw-r--r--src/socket/ntapi_sc_getsockname_v2.c2
-rw-r--r--src/socket/ntapi_sc_getsockopt.c2
-rw-r--r--src/socket/ntapi_sc_listen.c2
-rw-r--r--src/socket/ntapi_sc_recv.c2
-rw-r--r--src/socket/ntapi_sc_send.c2
-rw-r--r--src/socket/ntapi_sc_server_accept_connection_v1.c2
-rw-r--r--src/socket/ntapi_sc_server_accept_connection_v2.c2
-rw-r--r--src/socket/ntapi_sc_server_duplicate_socket.c2
-rw-r--r--src/socket/ntapi_sc_setsockopt.c2
-rw-r--r--src/socket/ntapi_sc_shutdown.c2
-rw-r--r--src/socket/ntapi_sc_socket_v1.c2
-rw-r--r--src/socket/ntapi_sc_socket_v2.c2
-rw-r--r--src/socket/ntapi_sc_wait.c2
21 files changed, 21 insertions, 21 deletions
diff --git a/src/socket/ntapi_sc_accept.c b/src/socket/ntapi_sc_accept.c
index 34eec46..8507672 100644
--- a/src/socket/ntapi_sc_accept.c
+++ b/src/socket/ntapi_sc_accept.c
@@ -1,6 +1,6 @@
/********************************************************/
/* ntapi: Native API core library */
-/* Copyright (C) 2013--2021 Z. Gilboa */
+/* Copyright (C) 2013--2021 SysDeer Technologies, LLC */
/* Released under GPLv2 and GPLv3; see COPYING.NTAPI. */
/********************************************************/
diff --git a/src/socket/ntapi_sc_bind_v1.c b/src/socket/ntapi_sc_bind_v1.c
index 680a5d8..82129ce 100644
--- a/src/socket/ntapi_sc_bind_v1.c
+++ b/src/socket/ntapi_sc_bind_v1.c
@@ -1,6 +1,6 @@
/********************************************************/
/* ntapi: Native API core library */
-/* Copyright (C) 2013--2021 Z. Gilboa */
+/* Copyright (C) 2013--2021 SysDeer Technologies, LLC */
/* Released under GPLv2 and GPLv3; see COPYING.NTAPI. */
/********************************************************/
diff --git a/src/socket/ntapi_sc_bind_v2.c b/src/socket/ntapi_sc_bind_v2.c
index 17a2ec9..e35cc21 100644
--- a/src/socket/ntapi_sc_bind_v2.c
+++ b/src/socket/ntapi_sc_bind_v2.c
@@ -1,6 +1,6 @@
/********************************************************/
/* ntapi: Native API core library */
-/* Copyright (C) 2013--2021 Z. Gilboa */
+/* Copyright (C) 2013--2021 SysDeer Technologies, LLC */
/* Released under GPLv2 and GPLv3; see COPYING.NTAPI. */
/********************************************************/
diff --git a/src/socket/ntapi_sc_connect_v1.c b/src/socket/ntapi_sc_connect_v1.c
index 68600f3..e7da200 100644
--- a/src/socket/ntapi_sc_connect_v1.c
+++ b/src/socket/ntapi_sc_connect_v1.c
@@ -1,6 +1,6 @@
/********************************************************/
/* ntapi: Native API core library */
-/* Copyright (C) 2013--2021 Z. Gilboa */
+/* Copyright (C) 2013--2021 SysDeer Technologies, LLC */
/* Released under GPLv2 and GPLv3; see COPYING.NTAPI. */
/********************************************************/
diff --git a/src/socket/ntapi_sc_connect_v2.c b/src/socket/ntapi_sc_connect_v2.c
index 674468d..c4901b1 100644
--- a/src/socket/ntapi_sc_connect_v2.c
+++ b/src/socket/ntapi_sc_connect_v2.c
@@ -1,6 +1,6 @@
/********************************************************/
/* ntapi: Native API core library */
-/* Copyright (C) 2013--2021 Z. Gilboa */
+/* Copyright (C) 2013--2021 SysDeer Technologies, LLC */
/* Released under GPLv2 and GPLv3; see COPYING.NTAPI. */
/********************************************************/
diff --git a/src/socket/ntapi_sc_getpeername_v1.c b/src/socket/ntapi_sc_getpeername_v1.c
index 00d8525..3dbc9f5 100644
--- a/src/socket/ntapi_sc_getpeername_v1.c
+++ b/src/socket/ntapi_sc_getpeername_v1.c
@@ -1,6 +1,6 @@
/********************************************************/
/* ntapi: Native API core library */
-/* Copyright (C) 2013--2021 Z. Gilboa */
+/* Copyright (C) 2013--2021 SysDeer Technologies, LLC */
/* Released under GPLv2 and GPLv3; see COPYING.NTAPI. */
/********************************************************/
diff --git a/src/socket/ntapi_sc_getpeername_v2.c b/src/socket/ntapi_sc_getpeername_v2.c
index fe648be..2234f6d 100644
--- a/src/socket/ntapi_sc_getpeername_v2.c
+++ b/src/socket/ntapi_sc_getpeername_v2.c
@@ -1,6 +1,6 @@
/********************************************************/
/* ntapi: Native API core library */
-/* Copyright (C) 2013--2021 Z. Gilboa */
+/* Copyright (C) 2013--2021 SysDeer Technologies, LLC */
/* Released under GPLv2 and GPLv3; see COPYING.NTAPI. */
/********************************************************/
diff --git a/src/socket/ntapi_sc_getsockname_v1.c b/src/socket/ntapi_sc_getsockname_v1.c
index d66aa4b..f4e87a9 100644
--- a/src/socket/ntapi_sc_getsockname_v1.c
+++ b/src/socket/ntapi_sc_getsockname_v1.c
@@ -1,6 +1,6 @@
/********************************************************/
/* ntapi: Native API core library */
-/* Copyright (C) 2013--2021 Z. Gilboa */
+/* Copyright (C) 2013--2021 SysDeer Technologies, LLC */
/* Released under GPLv2 and GPLv3; see COPYING.NTAPI. */
/********************************************************/
diff --git a/src/socket/ntapi_sc_getsockname_v2.c b/src/socket/ntapi_sc_getsockname_v2.c
index b83ba23..e186d0a 100644
--- a/src/socket/ntapi_sc_getsockname_v2.c
+++ b/src/socket/ntapi_sc_getsockname_v2.c
@@ -1,6 +1,6 @@
/********************************************************/
/* ntapi: Native API core library */
-/* Copyright (C) 2013--2021 Z. Gilboa */
+/* Copyright (C) 2013--2021 SysDeer Technologies, LLC */
/* Released under GPLv2 and GPLv3; see COPYING.NTAPI. */
/********************************************************/
diff --git a/src/socket/ntapi_sc_getsockopt.c b/src/socket/ntapi_sc_getsockopt.c
index 2f808f4..31ceeda 100644
--- a/src/socket/ntapi_sc_getsockopt.c
+++ b/src/socket/ntapi_sc_getsockopt.c
@@ -1,6 +1,6 @@
/********************************************************/
/* ntapi: Native API core library */
-/* Copyright (C) 2013--2021 Z. Gilboa */
+/* Copyright (C) 2013--2021 SysDeer Technologies, LLC */
/* Released under GPLv2 and GPLv3; see COPYING.NTAPI. */
/********************************************************/
diff --git a/src/socket/ntapi_sc_listen.c b/src/socket/ntapi_sc_listen.c
index ef212e5..fa989c1 100644
--- a/src/socket/ntapi_sc_listen.c
+++ b/src/socket/ntapi_sc_listen.c
@@ -1,6 +1,6 @@
/********************************************************/
/* ntapi: Native API core library */
-/* Copyright (C) 2013--2021 Z. Gilboa */
+/* Copyright (C) 2013--2021 SysDeer Technologies, LLC */
/* Released under GPLv2 and GPLv3; see COPYING.NTAPI. */
/********************************************************/
diff --git a/src/socket/ntapi_sc_recv.c b/src/socket/ntapi_sc_recv.c
index 39f04fa..6cfc2d2 100644
--- a/src/socket/ntapi_sc_recv.c
+++ b/src/socket/ntapi_sc_recv.c
@@ -1,6 +1,6 @@
/********************************************************/
/* ntapi: Native API core library */
-/* Copyright (C) 2013--2021 Z. Gilboa */
+/* Copyright (C) 2013--2021 SysDeer Technologies, LLC */
/* Released under GPLv2 and GPLv3; see COPYING.NTAPI. */
/********************************************************/
diff --git a/src/socket/ntapi_sc_send.c b/src/socket/ntapi_sc_send.c
index db6f316..d0d2d61 100644
--- a/src/socket/ntapi_sc_send.c
+++ b/src/socket/ntapi_sc_send.c
@@ -1,6 +1,6 @@
/********************************************************/
/* ntapi: Native API core library */
-/* Copyright (C) 2013--2021 Z. Gilboa */
+/* Copyright (C) 2013--2021 SysDeer Technologies, LLC */
/* Released under GPLv2 and GPLv3; see COPYING.NTAPI. */
/********************************************************/
diff --git a/src/socket/ntapi_sc_server_accept_connection_v1.c b/src/socket/ntapi_sc_server_accept_connection_v1.c
index e0864c0..1481004 100644
--- a/src/socket/ntapi_sc_server_accept_connection_v1.c
+++ b/src/socket/ntapi_sc_server_accept_connection_v1.c
@@ -1,6 +1,6 @@
/********************************************************/
/* ntapi: Native API core library */
-/* Copyright (C) 2013--2021 Z. Gilboa */
+/* Copyright (C) 2013--2021 SysDeer Technologies, LLC */
/* Released under GPLv2 and GPLv3; see COPYING.NTAPI. */
/********************************************************/
diff --git a/src/socket/ntapi_sc_server_accept_connection_v2.c b/src/socket/ntapi_sc_server_accept_connection_v2.c
index e951469..a37efc4 100644
--- a/src/socket/ntapi_sc_server_accept_connection_v2.c
+++ b/src/socket/ntapi_sc_server_accept_connection_v2.c
@@ -1,6 +1,6 @@
/********************************************************/
/* ntapi: Native API core library */
-/* Copyright (C) 2013--2021 Z. Gilboa */
+/* Copyright (C) 2013--2021 SysDeer Technologies, LLC */
/* Released under GPLv2 and GPLv3; see COPYING.NTAPI. */
/********************************************************/
diff --git a/src/socket/ntapi_sc_server_duplicate_socket.c b/src/socket/ntapi_sc_server_duplicate_socket.c
index dfb2367..f333bb2 100644
--- a/src/socket/ntapi_sc_server_duplicate_socket.c
+++ b/src/socket/ntapi_sc_server_duplicate_socket.c
@@ -1,6 +1,6 @@
/********************************************************/
/* ntapi: Native API core library */
-/* Copyright (C) 2013--2021 Z. Gilboa */
+/* Copyright (C) 2013--2021 SysDeer Technologies, LLC */
/* Released under GPLv2 and GPLv3; see COPYING.NTAPI. */
/********************************************************/
diff --git a/src/socket/ntapi_sc_setsockopt.c b/src/socket/ntapi_sc_setsockopt.c
index d9b6f11..4714723 100644
--- a/src/socket/ntapi_sc_setsockopt.c
+++ b/src/socket/ntapi_sc_setsockopt.c
@@ -1,6 +1,6 @@
/********************************************************/
/* ntapi: Native API core library */
-/* Copyright (C) 2013--2021 Z. Gilboa */
+/* Copyright (C) 2013--2021 SysDeer Technologies, LLC */
/* Released under GPLv2 and GPLv3; see COPYING.NTAPI. */
/********************************************************/
diff --git a/src/socket/ntapi_sc_shutdown.c b/src/socket/ntapi_sc_shutdown.c
index 8431cc7..cc14af2 100644
--- a/src/socket/ntapi_sc_shutdown.c
+++ b/src/socket/ntapi_sc_shutdown.c
@@ -1,6 +1,6 @@
/********************************************************/
/* ntapi: Native API core library */
-/* Copyright (C) 2013--2021 Z. Gilboa */
+/* Copyright (C) 2013--2021 SysDeer Technologies, LLC */
/* Released under GPLv2 and GPLv3; see COPYING.NTAPI. */
/********************************************************/
diff --git a/src/socket/ntapi_sc_socket_v1.c b/src/socket/ntapi_sc_socket_v1.c
index e3b595d..9b512f5 100644
--- a/src/socket/ntapi_sc_socket_v1.c
+++ b/src/socket/ntapi_sc_socket_v1.c
@@ -1,6 +1,6 @@
/********************************************************/
/* ntapi: Native API core library */
-/* Copyright (C) 2013--2021 Z. Gilboa */
+/* Copyright (C) 2013--2021 SysDeer Technologies, LLC */
/* Released under GPLv2 and GPLv3; see COPYING.NTAPI. */
/********************************************************/
diff --git a/src/socket/ntapi_sc_socket_v2.c b/src/socket/ntapi_sc_socket_v2.c
index c547315..3463efc 100644
--- a/src/socket/ntapi_sc_socket_v2.c
+++ b/src/socket/ntapi_sc_socket_v2.c
@@ -1,6 +1,6 @@
/********************************************************/
/* ntapi: Native API core library */
-/* Copyright (C) 2013--2021 Z. Gilboa */
+/* Copyright (C) 2013--2021 SysDeer Technologies, LLC */
/* Released under GPLv2 and GPLv3; see COPYING.NTAPI. */
/********************************************************/
diff --git a/src/socket/ntapi_sc_wait.c b/src/socket/ntapi_sc_wait.c
index 67b20f6..69fd23f 100644
--- a/src/socket/ntapi_sc_wait.c
+++ b/src/socket/ntapi_sc_wait.c
@@ -1,6 +1,6 @@
/********************************************************/
/* ntapi: Native API core library */
-/* Copyright (C) 2013--2021 Z. Gilboa */
+/* Copyright (C) 2013--2021 SysDeer Technologies, LLC */
/* Released under GPLv2 and GPLv3; see COPYING.NTAPI. */
/********************************************************/