[Openvpn-devel,v1] tapctl: use better wording for adapters

Message ID 20251112130149.10890-1-gert@greenie.muc.de
State New
Headers show
Series [Openvpn-devel,v1] tapctl: use better wording for adapters | expand

Commit Message

Gert Doering Nov. 12, 2025, 1:01 p.m. UTC
From: Lev Stipakov <lev@openvpn.net>

"TUN/TAP" is a bit confusing, so use more generic "VPN network adapter"
wording.

Change-Id: I4104d7e34fbc7232b677e937fc598128a8b7b3bc
Signed-off-by: Lev Stipakov <lev@openvpn.net>
Acked-by: Gert Doering <gert@greenie.muc.de>
Gerrit URL: https://gerrit.openvpn.net/c/openvpn/+/1371
---

This change was reviewed on Gerrit and approved by at least one
developer. I request to merge it to master.

Gerrit URL: https://gerrit.openvpn.net/c/openvpn/+/1371
This mail reflects revision 1 of this Change.

Acked-by according to Gerrit (reflected above):
Gert Doering <gert@greenie.muc.de>

Comments

Gert Doering Nov. 12, 2025, 1:24 p.m. UTC | #1
This one is trivial enough, so I dared to merge without actual testing
("it compiles, and the rest is just textual changes").

Your patch has been applied to the master branch.

commit 2fe6fd1dd7dd0667724b550b08bce2ac9e5210d3
Author: Lev Stipakov
Date:   Wed Nov 12 14:01:43 2025 +0100

     tapctl: use better wording for adapters

     Signed-off-by: Lev Stipakov <lev@openvpn.net>
     Acked-by: Gert Doering <gert@greenie.muc.de>
     Gerrit URL: https://gerrit.openvpn.net/c/openvpn/+/1371
     Message-Id: <20251112130149.10890-1-gert@greenie.muc.de>
     URL: https://www.mail-archive.com/openvpn-devel@lists.sourceforge.net/msg34364.html
     Signed-off-by: Gert Doering <gert@greenie.muc.de>


--
kind regards,

Gert Doering

Patch

diff --git a/src/tapctl/main.c b/src/tapctl/main.c
index 3caffd8..4d25998 100644
--- a/src/tapctl/main.c
+++ b/src/tapctl/main.c
@@ -50,9 +50,9 @@ 
     L"\n"
     L"Commands:\n"
     L"\n"
-    L"create     Create a new TUN/TAP adapter\n"
-    L"list       List TUN/TAP adapters\n"
-    L"delete     Delete specified network adapter\n"
+    L"create     Create a new VPN network adapter\n"
+    L"list       List VPN network adapters\n"
+    L"delete     Delete specified VPN network adapter\n"
     L"help       Display this text\n"
     L"\n"
     L"Hint: Use \"tapctl help <command>\" to display help for particular command.\n"
@@ -61,7 +61,7 @@ 
 static const WCHAR usage_message_create[] =
     L"%ls\n"
     L"\n"
-    L"Creates a new TUN/TAP adapter\n"
+    L"Creates a new VPN network adapter\n"
     L"\n"
     L"Usage:\n"
     L"\n"
@@ -69,8 +69,8 @@ 
     L"\n"
     L"Options:\n"
     L"\n"
-    L"--name <name>  Set TUN/TAP adapter name. Should the adapter with given name    \n"
-    L"               already exist, an error is returned. If this option is not      \n"
+    L"--name <name>  Set VPN network adapter name. Should the adapter with given     \n"
+    L"               name already exist, an error is returned. If this option is not \n"
     L"               specified, a default adapter name is chosen by Windows.         \n"
     L"               Note: This name can also be specified as OpenVPN's --dev-node   \n"
     L"               option.                                                         \n"
@@ -80,13 +80,13 @@ 
     L"\n"
     L"Output:\n"
     L"\n"
-    L"This command prints newly created TUN/TAP adapter's GUID to stdout.            \n"
+    L"This command prints newly created VPN network adapter's GUID to stdout.        \n"
 ;
 
 static const WCHAR usage_message_list[] =
     L"%ls\n"
     L"\n"
-    L"Lists TUN/TAP adapters\n"
+    L"Lists VPN network adapters\n"
     L"\n"
     L"Usage:\n"
     L"\n"
@@ -99,13 +99,13 @@ 
     L"\n"
     L"Output:\n"
     L"\n"
-    L"This command prints all TUN/TAP adapters to stdout.                            \n"
+    L"This command prints all VPN network adapters to stdout.                        \n"
 ;
 
 static const WCHAR usage_message_delete[] =
     L"%ls\n"
     L"\n"
-    L"Deletes the specified network adapter\n"
+    L"Deletes the specified VPN network adapter\n"
     L"\n"
     L"Usage:\n"
     L"\n"