Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/SoftEtherVPN/SoftEtherVPN_Stable.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordnobori <da.git@softether.co.jp>2014-01-15 13:01:42 +0400
committerdnobori <da.git@softether.co.jp>2014-01-15 13:01:42 +0400
commit001fd910fedfd0ef1690a9d3c50c1a28d1680d1d (patch)
treef4b83a9e3ab27af474134a935115b532cb05a473 /src/Mayaqua
parentc32bf3b84f0eeff7228edd0b545304ffa6d2c18f (diff)
v4.04-9412-rtm
Diffstat (limited to 'src/Mayaqua')
-rw-r--r--src/Mayaqua/Cfg.c9
-rw-r--r--src/Mayaqua/Cfg.h9
-rw-r--r--src/Mayaqua/Encrypt.c9
-rw-r--r--src/Mayaqua/Encrypt.h9
-rw-r--r--src/Mayaqua/FileIO.c9
-rw-r--r--src/Mayaqua/FileIO.h9
-rw-r--r--src/Mayaqua/Internat.c9
-rw-r--r--src/Mayaqua/Internat.h9
-rw-r--r--src/Mayaqua/Kernel.c9
-rw-r--r--src/Mayaqua/Kernel.h9
-rw-r--r--src/Mayaqua/MayaType.h9
-rw-r--r--src/Mayaqua/Mayaqua.c9
-rw-r--r--src/Mayaqua/Mayaqua.h9
-rw-r--r--src/Mayaqua/Memory.c9
-rw-r--r--src/Mayaqua/Memory.h9
-rw-r--r--src/Mayaqua/Microsoft.c9
-rw-r--r--src/Mayaqua/Microsoft.h9
-rw-r--r--src/Mayaqua/Network.c9
-rw-r--r--src/Mayaqua/Network.h9
-rw-r--r--src/Mayaqua/OS.c9
-rw-r--r--src/Mayaqua/OS.h9
-rw-r--r--src/Mayaqua/Object.c9
-rw-r--r--src/Mayaqua/Object.h9
-rw-r--r--src/Mayaqua/Pack.c9
-rw-r--r--src/Mayaqua/Pack.h9
-rw-r--r--src/Mayaqua/Secure.c9
-rw-r--r--src/Mayaqua/Secure.h9
-rw-r--r--src/Mayaqua/Str.c9
-rw-r--r--src/Mayaqua/Str.h9
-rw-r--r--src/Mayaqua/Table.c9
-rw-r--r--src/Mayaqua/Table.h9
-rw-r--r--src/Mayaqua/TcpIp.c9
-rw-r--r--src/Mayaqua/TcpIp.h9
-rw-r--r--src/Mayaqua/Tick64.c9
-rw-r--r--src/Mayaqua/Tick64.h9
-rw-r--r--src/Mayaqua/Tracking.c9
-rw-r--r--src/Mayaqua/Tracking.h9
-rw-r--r--src/Mayaqua/TunTap.h9
-rw-r--r--src/Mayaqua/Unix.c12
-rw-r--r--src/Mayaqua/Unix.h9
-rw-r--r--src/Mayaqua/Win32.c9
-rw-r--r--src/Mayaqua/Win32.h9
42 files changed, 380 insertions, 1 deletions
diff --git a/src/Mayaqua/Cfg.c b/src/Mayaqua/Cfg.c
index aa43eb84..3a7766dd 100644
--- a/src/Mayaqua/Cfg.c
+++ b/src/Mayaqua/Cfg.c
@@ -61,6 +61,15 @@
// COUNTRIES MIGHT BE RESTRICTED.
//
//
+// SOURCE CODE CONTRIBUTION
+// ------------------------
+//
+// Your contribution to SoftEther VPN Project is much appreciated.
+// Please send patches to us through GitHub.
+// Read the SoftEther VPN Patch Acceptance Policy in advance:
+// http://www.softether.org/5-download/src/9.patch
+//
+//
// DEAR SECURITY EXPERTS
// ---------------------
//
diff --git a/src/Mayaqua/Cfg.h b/src/Mayaqua/Cfg.h
index da403ebc..e66406c9 100644
--- a/src/Mayaqua/Cfg.h
+++ b/src/Mayaqua/Cfg.h
@@ -61,6 +61,15 @@
// COUNTRIES MIGHT BE RESTRICTED.
//
//
+// SOURCE CODE CONTRIBUTION
+// ------------------------
+//
+// Your contribution to SoftEther VPN Project is much appreciated.
+// Please send patches to us through GitHub.
+// Read the SoftEther VPN Patch Acceptance Policy in advance:
+// http://www.softether.org/5-download/src/9.patch
+//
+//
// DEAR SECURITY EXPERTS
// ---------------------
//
diff --git a/src/Mayaqua/Encrypt.c b/src/Mayaqua/Encrypt.c
index 5c6e32e5..d2b985d8 100644
--- a/src/Mayaqua/Encrypt.c
+++ b/src/Mayaqua/Encrypt.c
@@ -61,6 +61,15 @@
// COUNTRIES MIGHT BE RESTRICTED.
//
//
+// SOURCE CODE CONTRIBUTION
+// ------------------------
+//
+// Your contribution to SoftEther VPN Project is much appreciated.
+// Please send patches to us through GitHub.
+// Read the SoftEther VPN Patch Acceptance Policy in advance:
+// http://www.softether.org/5-download/src/9.patch
+//
+//
// DEAR SECURITY EXPERTS
// ---------------------
//
diff --git a/src/Mayaqua/Encrypt.h b/src/Mayaqua/Encrypt.h
index 24cb11e6..5a77c7db 100644
--- a/src/Mayaqua/Encrypt.h
+++ b/src/Mayaqua/Encrypt.h
@@ -61,6 +61,15 @@
// COUNTRIES MIGHT BE RESTRICTED.
//
//
+// SOURCE CODE CONTRIBUTION
+// ------------------------
+//
+// Your contribution to SoftEther VPN Project is much appreciated.
+// Please send patches to us through GitHub.
+// Read the SoftEther VPN Patch Acceptance Policy in advance:
+// http://www.softether.org/5-download/src/9.patch
+//
+//
// DEAR SECURITY EXPERTS
// ---------------------
//
diff --git a/src/Mayaqua/FileIO.c b/src/Mayaqua/FileIO.c
index 9be5c0ce..d3609134 100644
--- a/src/Mayaqua/FileIO.c
+++ b/src/Mayaqua/FileIO.c
@@ -61,6 +61,15 @@
// COUNTRIES MIGHT BE RESTRICTED.
//
//
+// SOURCE CODE CONTRIBUTION
+// ------------------------
+//
+// Your contribution to SoftEther VPN Project is much appreciated.
+// Please send patches to us through GitHub.
+// Read the SoftEther VPN Patch Acceptance Policy in advance:
+// http://www.softether.org/5-download/src/9.patch
+//
+//
// DEAR SECURITY EXPERTS
// ---------------------
//
diff --git a/src/Mayaqua/FileIO.h b/src/Mayaqua/FileIO.h
index 712a9567..52ddf28a 100644
--- a/src/Mayaqua/FileIO.h
+++ b/src/Mayaqua/FileIO.h
@@ -61,6 +61,15 @@
// COUNTRIES MIGHT BE RESTRICTED.
//
//
+// SOURCE CODE CONTRIBUTION
+// ------------------------
+//
+// Your contribution to SoftEther VPN Project is much appreciated.
+// Please send patches to us through GitHub.
+// Read the SoftEther VPN Patch Acceptance Policy in advance:
+// http://www.softether.org/5-download/src/9.patch
+//
+//
// DEAR SECURITY EXPERTS
// ---------------------
//
diff --git a/src/Mayaqua/Internat.c b/src/Mayaqua/Internat.c
index 93392f93..c10a6a23 100644
--- a/src/Mayaqua/Internat.c
+++ b/src/Mayaqua/Internat.c
@@ -61,6 +61,15 @@
// COUNTRIES MIGHT BE RESTRICTED.
//
//
+// SOURCE CODE CONTRIBUTION
+// ------------------------
+//
+// Your contribution to SoftEther VPN Project is much appreciated.
+// Please send patches to us through GitHub.
+// Read the SoftEther VPN Patch Acceptance Policy in advance:
+// http://www.softether.org/5-download/src/9.patch
+//
+//
// DEAR SECURITY EXPERTS
// ---------------------
//
diff --git a/src/Mayaqua/Internat.h b/src/Mayaqua/Internat.h
index 4a5181b9..8001ab1f 100644
--- a/src/Mayaqua/Internat.h
+++ b/src/Mayaqua/Internat.h
@@ -61,6 +61,15 @@
// COUNTRIES MIGHT BE RESTRICTED.
//
//
+// SOURCE CODE CONTRIBUTION
+// ------------------------
+//
+// Your contribution to SoftEther VPN Project is much appreciated.
+// Please send patches to us through GitHub.
+// Read the SoftEther VPN Patch Acceptance Policy in advance:
+// http://www.softether.org/5-download/src/9.patch
+//
+//
// DEAR SECURITY EXPERTS
// ---------------------
//
diff --git a/src/Mayaqua/Kernel.c b/src/Mayaqua/Kernel.c
index c331290b..3d5b4bb4 100644
--- a/src/Mayaqua/Kernel.c
+++ b/src/Mayaqua/Kernel.c
@@ -61,6 +61,15 @@
// COUNTRIES MIGHT BE RESTRICTED.
//
//
+// SOURCE CODE CONTRIBUTION
+// ------------------------
+//
+// Your contribution to SoftEther VPN Project is much appreciated.
+// Please send patches to us through GitHub.
+// Read the SoftEther VPN Patch Acceptance Policy in advance:
+// http://www.softether.org/5-download/src/9.patch
+//
+//
// DEAR SECURITY EXPERTS
// ---------------------
//
diff --git a/src/Mayaqua/Kernel.h b/src/Mayaqua/Kernel.h
index 9e55979d..29b9de05 100644
--- a/src/Mayaqua/Kernel.h
+++ b/src/Mayaqua/Kernel.h
@@ -61,6 +61,15 @@
// COUNTRIES MIGHT BE RESTRICTED.
//
//
+// SOURCE CODE CONTRIBUTION
+// ------------------------
+//
+// Your contribution to SoftEther VPN Project is much appreciated.
+// Please send patches to us through GitHub.
+// Read the SoftEther VPN Patch Acceptance Policy in advance:
+// http://www.softether.org/5-download/src/9.patch
+//
+//
// DEAR SECURITY EXPERTS
// ---------------------
//
diff --git a/src/Mayaqua/MayaType.h b/src/Mayaqua/MayaType.h
index dd81d5d2..6715d5df 100644
--- a/src/Mayaqua/MayaType.h
+++ b/src/Mayaqua/MayaType.h
@@ -61,6 +61,15 @@
// COUNTRIES MIGHT BE RESTRICTED.
//
//
+// SOURCE CODE CONTRIBUTION
+// ------------------------
+//
+// Your contribution to SoftEther VPN Project is much appreciated.
+// Please send patches to us through GitHub.
+// Read the SoftEther VPN Patch Acceptance Policy in advance:
+// http://www.softether.org/5-download/src/9.patch
+//
+//
// DEAR SECURITY EXPERTS
// ---------------------
//
diff --git a/src/Mayaqua/Mayaqua.c b/src/Mayaqua/Mayaqua.c
index 5cc78a23..64cb8c8f 100644
--- a/src/Mayaqua/Mayaqua.c
+++ b/src/Mayaqua/Mayaqua.c
@@ -61,6 +61,15 @@
// COUNTRIES MIGHT BE RESTRICTED.
//
//
+// SOURCE CODE CONTRIBUTION
+// ------------------------
+//
+// Your contribution to SoftEther VPN Project is much appreciated.
+// Please send patches to us through GitHub.
+// Read the SoftEther VPN Patch Acceptance Policy in advance:
+// http://www.softether.org/5-download/src/9.patch
+//
+//
// DEAR SECURITY EXPERTS
// ---------------------
//
diff --git a/src/Mayaqua/Mayaqua.h b/src/Mayaqua/Mayaqua.h
index 75e6b9d9..f8afede8 100644
--- a/src/Mayaqua/Mayaqua.h
+++ b/src/Mayaqua/Mayaqua.h
@@ -61,6 +61,15 @@
// COUNTRIES MIGHT BE RESTRICTED.
//
//
+// SOURCE CODE CONTRIBUTION
+// ------------------------
+//
+// Your contribution to SoftEther VPN Project is much appreciated.
+// Please send patches to us through GitHub.
+// Read the SoftEther VPN Patch Acceptance Policy in advance:
+// http://www.softether.org/5-download/src/9.patch
+//
+//
// DEAR SECURITY EXPERTS
// ---------------------
//
diff --git a/src/Mayaqua/Memory.c b/src/Mayaqua/Memory.c
index 2fc00844..da2598c9 100644
--- a/src/Mayaqua/Memory.c
+++ b/src/Mayaqua/Memory.c
@@ -61,6 +61,15 @@
// COUNTRIES MIGHT BE RESTRICTED.
//
//
+// SOURCE CODE CONTRIBUTION
+// ------------------------
+//
+// Your contribution to SoftEther VPN Project is much appreciated.
+// Please send patches to us through GitHub.
+// Read the SoftEther VPN Patch Acceptance Policy in advance:
+// http://www.softether.org/5-download/src/9.patch
+//
+//
// DEAR SECURITY EXPERTS
// ---------------------
//
diff --git a/src/Mayaqua/Memory.h b/src/Mayaqua/Memory.h
index 7ebc4dd6..46d97700 100644
--- a/src/Mayaqua/Memory.h
+++ b/src/Mayaqua/Memory.h
@@ -61,6 +61,15 @@
// COUNTRIES MIGHT BE RESTRICTED.
//
//
+// SOURCE CODE CONTRIBUTION
+// ------------------------
+//
+// Your contribution to SoftEther VPN Project is much appreciated.
+// Please send patches to us through GitHub.
+// Read the SoftEther VPN Patch Acceptance Policy in advance:
+// http://www.softether.org/5-download/src/9.patch
+//
+//
// DEAR SECURITY EXPERTS
// ---------------------
//
diff --git a/src/Mayaqua/Microsoft.c b/src/Mayaqua/Microsoft.c
index b03b826f..f19c374b 100644
--- a/src/Mayaqua/Microsoft.c
+++ b/src/Mayaqua/Microsoft.c
@@ -61,6 +61,15 @@
// COUNTRIES MIGHT BE RESTRICTED.
//
//
+// SOURCE CODE CONTRIBUTION
+// ------------------------
+//
+// Your contribution to SoftEther VPN Project is much appreciated.
+// Please send patches to us through GitHub.
+// Read the SoftEther VPN Patch Acceptance Policy in advance:
+// http://www.softether.org/5-download/src/9.patch
+//
+//
// DEAR SECURITY EXPERTS
// ---------------------
//
diff --git a/src/Mayaqua/Microsoft.h b/src/Mayaqua/Microsoft.h
index b1b752ff..7cc7dbb5 100644
--- a/src/Mayaqua/Microsoft.h
+++ b/src/Mayaqua/Microsoft.h
@@ -61,6 +61,15 @@
// COUNTRIES MIGHT BE RESTRICTED.
//
//
+// SOURCE CODE CONTRIBUTION
+// ------------------------
+//
+// Your contribution to SoftEther VPN Project is much appreciated.
+// Please send patches to us through GitHub.
+// Read the SoftEther VPN Patch Acceptance Policy in advance:
+// http://www.softether.org/5-download/src/9.patch
+//
+//
// DEAR SECURITY EXPERTS
// ---------------------
//
diff --git a/src/Mayaqua/Network.c b/src/Mayaqua/Network.c
index 3025c5e3..6d68bf8a 100644
--- a/src/Mayaqua/Network.c
+++ b/src/Mayaqua/Network.c
@@ -61,6 +61,15 @@
// COUNTRIES MIGHT BE RESTRICTED.
//
//
+// SOURCE CODE CONTRIBUTION
+// ------------------------
+//
+// Your contribution to SoftEther VPN Project is much appreciated.
+// Please send patches to us through GitHub.
+// Read the SoftEther VPN Patch Acceptance Policy in advance:
+// http://www.softether.org/5-download/src/9.patch
+//
+//
// DEAR SECURITY EXPERTS
// ---------------------
//
diff --git a/src/Mayaqua/Network.h b/src/Mayaqua/Network.h
index 20be8619..2d4a633d 100644
--- a/src/Mayaqua/Network.h
+++ b/src/Mayaqua/Network.h
@@ -61,6 +61,15 @@
// COUNTRIES MIGHT BE RESTRICTED.
//
//
+// SOURCE CODE CONTRIBUTION
+// ------------------------
+//
+// Your contribution to SoftEther VPN Project is much appreciated.
+// Please send patches to us through GitHub.
+// Read the SoftEther VPN Patch Acceptance Policy in advance:
+// http://www.softether.org/5-download/src/9.patch
+//
+//
// DEAR SECURITY EXPERTS
// ---------------------
//
diff --git a/src/Mayaqua/OS.c b/src/Mayaqua/OS.c
index 66042798..17265ae4 100644
--- a/src/Mayaqua/OS.c
+++ b/src/Mayaqua/OS.c
@@ -61,6 +61,15 @@
// COUNTRIES MIGHT BE RESTRICTED.
//
//
+// SOURCE CODE CONTRIBUTION
+// ------------------------
+//
+// Your contribution to SoftEther VPN Project is much appreciated.
+// Please send patches to us through GitHub.
+// Read the SoftEther VPN Patch Acceptance Policy in advance:
+// http://www.softether.org/5-download/src/9.patch
+//
+//
// DEAR SECURITY EXPERTS
// ---------------------
//
diff --git a/src/Mayaqua/OS.h b/src/Mayaqua/OS.h
index 0dc0a31e..befd542f 100644
--- a/src/Mayaqua/OS.h
+++ b/src/Mayaqua/OS.h
@@ -61,6 +61,15 @@
// COUNTRIES MIGHT BE RESTRICTED.
//
//
+// SOURCE CODE CONTRIBUTION
+// ------------------------
+//
+// Your contribution to SoftEther VPN Project is much appreciated.
+// Please send patches to us through GitHub.
+// Read the SoftEther VPN Patch Acceptance Policy in advance:
+// http://www.softether.org/5-download/src/9.patch
+//
+//
// DEAR SECURITY EXPERTS
// ---------------------
//
diff --git a/src/Mayaqua/Object.c b/src/Mayaqua/Object.c
index b4a7bc0b..e90fecab 100644
--- a/src/Mayaqua/Object.c
+++ b/src/Mayaqua/Object.c
@@ -61,6 +61,15 @@
// COUNTRIES MIGHT BE RESTRICTED.
//
//
+// SOURCE CODE CONTRIBUTION
+// ------------------------
+//
+// Your contribution to SoftEther VPN Project is much appreciated.
+// Please send patches to us through GitHub.
+// Read the SoftEther VPN Patch Acceptance Policy in advance:
+// http://www.softether.org/5-download/src/9.patch
+//
+//
// DEAR SECURITY EXPERTS
// ---------------------
//
diff --git a/src/Mayaqua/Object.h b/src/Mayaqua/Object.h
index d5f90694..6d870cd7 100644
--- a/src/Mayaqua/Object.h
+++ b/src/Mayaqua/Object.h
@@ -61,6 +61,15 @@
// COUNTRIES MIGHT BE RESTRICTED.
//
//
+// SOURCE CODE CONTRIBUTION
+// ------------------------
+//
+// Your contribution to SoftEther VPN Project is much appreciated.
+// Please send patches to us through GitHub.
+// Read the SoftEther VPN Patch Acceptance Policy in advance:
+// http://www.softether.org/5-download/src/9.patch
+//
+//
// DEAR SECURITY EXPERTS
// ---------------------
//
diff --git a/src/Mayaqua/Pack.c b/src/Mayaqua/Pack.c
index a72c71a4..f5099791 100644
--- a/src/Mayaqua/Pack.c
+++ b/src/Mayaqua/Pack.c
@@ -61,6 +61,15 @@
// COUNTRIES MIGHT BE RESTRICTED.
//
//
+// SOURCE CODE CONTRIBUTION
+// ------------------------
+//
+// Your contribution to SoftEther VPN Project is much appreciated.
+// Please send patches to us through GitHub.
+// Read the SoftEther VPN Patch Acceptance Policy in advance:
+// http://www.softether.org/5-download/src/9.patch
+//
+//
// DEAR SECURITY EXPERTS
// ---------------------
//
diff --git a/src/Mayaqua/Pack.h b/src/Mayaqua/Pack.h
index 5cd70d26..40ee08e0 100644
--- a/src/Mayaqua/Pack.h
+++ b/src/Mayaqua/Pack.h
@@ -61,6 +61,15 @@
// COUNTRIES MIGHT BE RESTRICTED.
//
//
+// SOURCE CODE CONTRIBUTION
+// ------------------------
+//
+// Your contribution to SoftEther VPN Project is much appreciated.
+// Please send patches to us through GitHub.
+// Read the SoftEther VPN Patch Acceptance Policy in advance:
+// http://www.softether.org/5-download/src/9.patch
+//
+//
// DEAR SECURITY EXPERTS
// ---------------------
//
diff --git a/src/Mayaqua/Secure.c b/src/Mayaqua/Secure.c
index e970062f..0dbb617e 100644
--- a/src/Mayaqua/Secure.c
+++ b/src/Mayaqua/Secure.c
@@ -61,6 +61,15 @@
// COUNTRIES MIGHT BE RESTRICTED.
//
//
+// SOURCE CODE CONTRIBUTION
+// ------------------------
+//
+// Your contribution to SoftEther VPN Project is much appreciated.
+// Please send patches to us through GitHub.
+// Read the SoftEther VPN Patch Acceptance Policy in advance:
+// http://www.softether.org/5-download/src/9.patch
+//
+//
// DEAR SECURITY EXPERTS
// ---------------------
//
diff --git a/src/Mayaqua/Secure.h b/src/Mayaqua/Secure.h
index f9fd0fdd..743c1eb1 100644
--- a/src/Mayaqua/Secure.h
+++ b/src/Mayaqua/Secure.h
@@ -61,6 +61,15 @@
// COUNTRIES MIGHT BE RESTRICTED.
//
//
+// SOURCE CODE CONTRIBUTION
+// ------------------------
+//
+// Your contribution to SoftEther VPN Project is much appreciated.
+// Please send patches to us through GitHub.
+// Read the SoftEther VPN Patch Acceptance Policy in advance:
+// http://www.softether.org/5-download/src/9.patch
+//
+//
// DEAR SECURITY EXPERTS
// ---------------------
//
diff --git a/src/Mayaqua/Str.c b/src/Mayaqua/Str.c
index a85edaf9..d71b7692 100644
--- a/src/Mayaqua/Str.c
+++ b/src/Mayaqua/Str.c
@@ -61,6 +61,15 @@
// COUNTRIES MIGHT BE RESTRICTED.
//
//
+// SOURCE CODE CONTRIBUTION
+// ------------------------
+//
+// Your contribution to SoftEther VPN Project is much appreciated.
+// Please send patches to us through GitHub.
+// Read the SoftEther VPN Patch Acceptance Policy in advance:
+// http://www.softether.org/5-download/src/9.patch
+//
+//
// DEAR SECURITY EXPERTS
// ---------------------
//
diff --git a/src/Mayaqua/Str.h b/src/Mayaqua/Str.h
index bff89011..6e6377d3 100644
--- a/src/Mayaqua/Str.h
+++ b/src/Mayaqua/Str.h
@@ -61,6 +61,15 @@
// COUNTRIES MIGHT BE RESTRICTED.
//
//
+// SOURCE CODE CONTRIBUTION
+// ------------------------
+//
+// Your contribution to SoftEther VPN Project is much appreciated.
+// Please send patches to us through GitHub.
+// Read the SoftEther VPN Patch Acceptance Policy in advance:
+// http://www.softether.org/5-download/src/9.patch
+//
+//
// DEAR SECURITY EXPERTS
// ---------------------
//
diff --git a/src/Mayaqua/Table.c b/src/Mayaqua/Table.c
index 6cc3282b..4952894e 100644
--- a/src/Mayaqua/Table.c
+++ b/src/Mayaqua/Table.c
@@ -61,6 +61,15 @@
// COUNTRIES MIGHT BE RESTRICTED.
//
//
+// SOURCE CODE CONTRIBUTION
+// ------------------------
+//
+// Your contribution to SoftEther VPN Project is much appreciated.
+// Please send patches to us through GitHub.
+// Read the SoftEther VPN Patch Acceptance Policy in advance:
+// http://www.softether.org/5-download/src/9.patch
+//
+//
// DEAR SECURITY EXPERTS
// ---------------------
//
diff --git a/src/Mayaqua/Table.h b/src/Mayaqua/Table.h
index b7a0e64d..2e77a0f1 100644
--- a/src/Mayaqua/Table.h
+++ b/src/Mayaqua/Table.h
@@ -61,6 +61,15 @@
// COUNTRIES MIGHT BE RESTRICTED.
//
//
+// SOURCE CODE CONTRIBUTION
+// ------------------------
+//
+// Your contribution to SoftEther VPN Project is much appreciated.
+// Please send patches to us through GitHub.
+// Read the SoftEther VPN Patch Acceptance Policy in advance:
+// http://www.softether.org/5-download/src/9.patch
+//
+//
// DEAR SECURITY EXPERTS
// ---------------------
//
diff --git a/src/Mayaqua/TcpIp.c b/src/Mayaqua/TcpIp.c
index 4bb63c9b..0ec28cea 100644
--- a/src/Mayaqua/TcpIp.c
+++ b/src/Mayaqua/TcpIp.c
@@ -61,6 +61,15 @@
// COUNTRIES MIGHT BE RESTRICTED.
//
//
+// SOURCE CODE CONTRIBUTION
+// ------------------------
+//
+// Your contribution to SoftEther VPN Project is much appreciated.
+// Please send patches to us through GitHub.
+// Read the SoftEther VPN Patch Acceptance Policy in advance:
+// http://www.softether.org/5-download/src/9.patch
+//
+//
// DEAR SECURITY EXPERTS
// ---------------------
//
diff --git a/src/Mayaqua/TcpIp.h b/src/Mayaqua/TcpIp.h
index 0740460a..7ca7ed67 100644
--- a/src/Mayaqua/TcpIp.h
+++ b/src/Mayaqua/TcpIp.h
@@ -61,6 +61,15 @@
// COUNTRIES MIGHT BE RESTRICTED.
//
//
+// SOURCE CODE CONTRIBUTION
+// ------------------------
+//
+// Your contribution to SoftEther VPN Project is much appreciated.
+// Please send patches to us through GitHub.
+// Read the SoftEther VPN Patch Acceptance Policy in advance:
+// http://www.softether.org/5-download/src/9.patch
+//
+//
// DEAR SECURITY EXPERTS
// ---------------------
//
diff --git a/src/Mayaqua/Tick64.c b/src/Mayaqua/Tick64.c
index 91224cdf..0654963d 100644
--- a/src/Mayaqua/Tick64.c
+++ b/src/Mayaqua/Tick64.c
@@ -61,6 +61,15 @@
// COUNTRIES MIGHT BE RESTRICTED.
//
//
+// SOURCE CODE CONTRIBUTION
+// ------------------------
+//
+// Your contribution to SoftEther VPN Project is much appreciated.
+// Please send patches to us through GitHub.
+// Read the SoftEther VPN Patch Acceptance Policy in advance:
+// http://www.softether.org/5-download/src/9.patch
+//
+//
// DEAR SECURITY EXPERTS
// ---------------------
//
diff --git a/src/Mayaqua/Tick64.h b/src/Mayaqua/Tick64.h
index 8d5b5eed..c754d684 100644
--- a/src/Mayaqua/Tick64.h
+++ b/src/Mayaqua/Tick64.h
@@ -61,6 +61,15 @@
// COUNTRIES MIGHT BE RESTRICTED.
//
//
+// SOURCE CODE CONTRIBUTION
+// ------------------------
+//
+// Your contribution to SoftEther VPN Project is much appreciated.
+// Please send patches to us through GitHub.
+// Read the SoftEther VPN Patch Acceptance Policy in advance:
+// http://www.softether.org/5-download/src/9.patch
+//
+//
// DEAR SECURITY EXPERTS
// ---------------------
//
diff --git a/src/Mayaqua/Tracking.c b/src/Mayaqua/Tracking.c
index 55bb9284..d0ff53ae 100644
--- a/src/Mayaqua/Tracking.c
+++ b/src/Mayaqua/Tracking.c
@@ -61,6 +61,15 @@
// COUNTRIES MIGHT BE RESTRICTED.
//
//
+// SOURCE CODE CONTRIBUTION
+// ------------------------
+//
+// Your contribution to SoftEther VPN Project is much appreciated.
+// Please send patches to us through GitHub.
+// Read the SoftEther VPN Patch Acceptance Policy in advance:
+// http://www.softether.org/5-download/src/9.patch
+//
+//
// DEAR SECURITY EXPERTS
// ---------------------
//
diff --git a/src/Mayaqua/Tracking.h b/src/Mayaqua/Tracking.h
index 54cd6d6b..498d8a1f 100644
--- a/src/Mayaqua/Tracking.h
+++ b/src/Mayaqua/Tracking.h
@@ -61,6 +61,15 @@
// COUNTRIES MIGHT BE RESTRICTED.
//
//
+// SOURCE CODE CONTRIBUTION
+// ------------------------
+//
+// Your contribution to SoftEther VPN Project is much appreciated.
+// Please send patches to us through GitHub.
+// Read the SoftEther VPN Patch Acceptance Policy in advance:
+// http://www.softether.org/5-download/src/9.patch
+//
+//
// DEAR SECURITY EXPERTS
// ---------------------
//
diff --git a/src/Mayaqua/TunTap.h b/src/Mayaqua/TunTap.h
index 5db02c06..738d3e4f 100644
--- a/src/Mayaqua/TunTap.h
+++ b/src/Mayaqua/TunTap.h
@@ -52,6 +52,15 @@
// COUNTRIES MIGHT BE RESTRICTED.
//
//
+// SOURCE CODE CONTRIBUTION
+// ------------------------
+//
+// Your contribution to SoftEther VPN Project is much appreciated.
+// Please send patches to us through GitHub.
+// Read the SoftEther VPN Patch Acceptance Policy in advance:
+// http://www.softether.org/5-download/src/9.patch
+//
+//
// DEAR SECURITY EXPERTS
// ---------------------
//
diff --git a/src/Mayaqua/Unix.c b/src/Mayaqua/Unix.c
index fc2cbf32..25d9aabd 100644
--- a/src/Mayaqua/Unix.c
+++ b/src/Mayaqua/Unix.c
@@ -11,7 +11,8 @@
//
// http://www.softether.org/
//
-// Author: Daiyuu Nobori
+// Authors: Daiyuu Nobori
+// Contributors: Melvyn (https://github.com/yaurthek)
// Comments: Tetsuo Sugiyama, Ph.D.
//
//
@@ -61,6 +62,15 @@
// COUNTRIES MIGHT BE RESTRICTED.
//
//
+// SOURCE CODE CONTRIBUTION
+// ------------------------
+//
+// Your contribution to SoftEther VPN Project is much appreciated.
+// Please send patches to us through GitHub.
+// Read the SoftEther VPN Patch Acceptance Policy in advance:
+// http://www.softether.org/5-download/src/9.patch
+//
+//
// DEAR SECURITY EXPERTS
// ---------------------
//
diff --git a/src/Mayaqua/Unix.h b/src/Mayaqua/Unix.h
index 1f881a15..104a9f5c 100644
--- a/src/Mayaqua/Unix.h
+++ b/src/Mayaqua/Unix.h
@@ -61,6 +61,15 @@
// COUNTRIES MIGHT BE RESTRICTED.
//
//
+// SOURCE CODE CONTRIBUTION
+// ------------------------
+//
+// Your contribution to SoftEther VPN Project is much appreciated.
+// Please send patches to us through GitHub.
+// Read the SoftEther VPN Patch Acceptance Policy in advance:
+// http://www.softether.org/5-download/src/9.patch
+//
+//
// DEAR SECURITY EXPERTS
// ---------------------
//
diff --git a/src/Mayaqua/Win32.c b/src/Mayaqua/Win32.c
index 7e1cc778..d1430d68 100644
--- a/src/Mayaqua/Win32.c
+++ b/src/Mayaqua/Win32.c
@@ -61,6 +61,15 @@
// COUNTRIES MIGHT BE RESTRICTED.
//
//
+// SOURCE CODE CONTRIBUTION
+// ------------------------
+//
+// Your contribution to SoftEther VPN Project is much appreciated.
+// Please send patches to us through GitHub.
+// Read the SoftEther VPN Patch Acceptance Policy in advance:
+// http://www.softether.org/5-download/src/9.patch
+//
+//
// DEAR SECURITY EXPERTS
// ---------------------
//
diff --git a/src/Mayaqua/Win32.h b/src/Mayaqua/Win32.h
index 8a0f9617..e01915ed 100644
--- a/src/Mayaqua/Win32.h
+++ b/src/Mayaqua/Win32.h
@@ -61,6 +61,15 @@
// COUNTRIES MIGHT BE RESTRICTED.
//
//
+// SOURCE CODE CONTRIBUTION
+// ------------------------
+//
+// Your contribution to SoftEther VPN Project is much appreciated.
+// Please send patches to us through GitHub.
+// Read the SoftEther VPN Patch Acceptance Policy in advance:
+// http://www.softether.org/5-download/src/9.patch
+//
+//
// DEAR SECURITY EXPERTS
// ---------------------
//