1
0
mirror of https://github.com/SoftEtherVPN/SoftEtherVPN.git synced 2024-09-18 01:33:00 +03:00

Fixed the service title.

This commit is contained in:
Daiyuu Nobori 2017-10-19 15:24:51 +09:00
parent 804b9f1a19
commit d8bf734baa
6 changed files with 51 additions and 3 deletions

View File

@ -1093,6 +1093,23 @@ UNIX_SVC_ERROR_FORK Failed to create child process for the %S service.\n
UNIX_SVC_NONROOT \nWarning: The current user context is non-root. It is recommended to run the VPN service by the root user. Although the VPN service may run under non-root users, some privilege-required functions (e.g. the local bridge function) need the root privilege.\n
# 服务定义 (SoftEther VPN Client)
SVC_VPNCLIENT_NAME vpnclient
SVC_VPNCLIENT_TITLE SoftEther VPN Client Developer Edition
SVC_VPNCLIENT_DESCRIPT 它为 SoftEther VPN Client 管理虚拟网络适配器设备驱动和连接服务。当服务停止时,此计算机将无法使用 SoftEther VPN Client 连接到 SoftEther VPN Server。
# 服务定义 (SoftEther VPN Server)
SVC_VPNSERVER_NAME vpnserver
SVC_VPNSERVER_TITLE SoftEther VPN Server Developer Edition
SVC_VPNSERVER_DESCRIPT 它管理 SoftEther VPN Server 服务进程。SoftEther VPN Server 通过 TCP/IP 协议提供高性能 SoftEther VPN Server 功能。当此服务被停止时,此计算机上的 SoftEther VPN Client 也将停止,且 SoftEther VPN Client 将无法与此计算机建立 VPN 连接。
# 服务定义 (SoftEther VPN Bridge)
SVC_VPNBRIDGE_NAME vpnbridge
SVC_VPNBRIDGE_TITLE SoftEther VPN Bridge Developer Edition
SVC_VPNBRIDGE_DESCRIPT 它管理 SoftEther VPN Bridge 服务进程。SoftEther VPN Bridge 提供此计算机连接的网络与远程 SoftEther VPN Server 之间的连接。当此服务被停止时,此计算机上的 SoftEther VPN Bridge 也将停止,且无法再通过网桥连接进行通信。
# 服务定义 (SoftEther VPN Client)
SVC_SEVPNCLIENTDEV_NAME sevpnclientdev

View File

@ -1083,6 +1083,21 @@ UNIX_SVC_NONROOT \nWarning: The current user context is non-root. It is recomme
# Service definition (SoftEther VPN Client)
SVC_VPNCLIENT_NAME vpnclient
SVC_VPNCLIENT_TITLE SoftEther VPN Client Developer Edition
SVC_VPNCLIENT_DESCRIPT This manages the Virtual Network Adapter device driver and connection service for the SoftEther VPN Client. When this service is stopped, it will not be possible to use SoftEther VPN Client on this computer to connect to a SoftEther VPN Server.
# Service Definition (SoftEther VPN Server)
SVC_VPNSERVER_NAME vpnserver
SVC_VPNSERVER_TITLE SoftEther VPN Server Developer Edition
SVC_VPNSERVER_DESCRIPT This manages the server processes of SoftEther VPN Server. SoftEther VPN Server provides high-performance SoftEther VPN Server functions via TCP/IP protocol. When this service is stopped, SoftEther VPN Server on this computer will stop and SoftEther VPN Client will be unable to establish a VPN connection with this computer.
# Service Definition (SoftEther VPN Bridge)
SVC_VPNBRIDGE_NAME vpnbridge
SVC_VPNBRIDGE_TITLE SoftEther VPN Bridge Developer Edition
SVC_VPNBRIDGE_DESCRIPT This manages the processes of SoftEther VPN Bridge. SoftEther VPN Bridge provides a bridging connection between the network this computer is connected to and a SoftEther VPN Server that is remotely located. When this service is stopped, SoftEther VPN Bridge on this computer will stop and it will no longer be possible to communicate via the bridge connection.
# Service definition (SoftEther VPN Client)

View File

@ -1086,6 +1086,22 @@ UNIX_SVC_ERROR_FORK Failed to create child process for the %S service.\n
UNIX_SVC_NONROOT \nWarning: The current user context is non-root. It is recommended to run the VPN service by the root user. Although the VPN service may run under non-root users, some privilege-required functions (e.g. the local bridge function) need the root privilege.\n
# サービス定義 (SoftEther VPN Client)
SVC_VPNCLIENT_NAME vpnclient
SVC_VPNCLIENT_TITLE SoftEther VPN Client Developer Edition
SVC_VPNCLIENT_DESCRIPT SoftEther VPN Client の仮想 LAN カードデバイスドライバおよび接続サービスを管理します。このサービスが停止された場合は、このコンピュータの SoftEther VPN Client を使用して SoftEther VPN Server に接続することができなくなります。
# サービス定義 (SoftEther VPN Server)
SVC_VPNSERVER_NAME vpnserver
SVC_VPNSERVER_TITLE SoftEther VPN Server Developer Edition
SVC_VPNSERVER_DESCRIPT SoftEther VPN Server サーバー プロセスを管理します。SoftEther VPN Server は高性能の SoftEther VPN Server 機能を TCP/IP プロトコルを通じて提供します。このサービスが停止された場合は、このコンピュータの SoftEther VPN Server は停止し、SoftEther VPN Client はこのコンピュータに VPN 接続することができなくなります。
# サービス定義 (SoftEther VPN Bridge)
SVC_VPNBRIDGE_NAME vpnbridge
SVC_VPNBRIDGE_TITLE SoftEther VPN Bridge Developer Edition
SVC_VPNBRIDGE_DESCRIPT SoftEther VPN Bridge プロセスを管理します。SoftEther VPN Bridge はこのコンピュータに接続されているネットワークと遠隔地にある SoftEther VPN Server との間をブリッジ接続します。このサービスが停止された場合は、このコンピュータの SoftEther VPN Bridge は停止し、ブリッジ接続を経由した通信ができなくなります。
# サービス定義 (SoftEther VPN Client)

View File

@ -160,7 +160,7 @@ int main(int argc, char *argv[])
#ifdef OS_WIN32
return MsService(GC_SVC_NAME_VPNBRIDGE, StartProcess, StopProcess, ICO_BRIDGE, argv[0]);
#else // OS_WIN32
return UnixService(argc, argv, "sevpnbridge", StartProcess, StopProcess);
return UnixService(argc, argv, "vpnbridge", StartProcess, StopProcess);
#endif // OS_WIN32
}

View File

@ -147,7 +147,7 @@ int main(int argc, char *argv[])
return MsService(GC_SVC_NAME_VPNCLIENT, StartProcess, StopProcess, ICO_MACHINE, argv[0]);
#else // OS_WIN32
return UnixService(argc, argv, "sevpnclient", StartProcess, StopProcess);
return UnixService(argc, argv, "vpnclient", StartProcess, StopProcess);
#endif // OS_WIN32
}

View File

@ -161,7 +161,7 @@ int main(int argc, char *argv[])
return MsService(GC_SVC_NAME_VPNSERVER, StartProcess, StopProcess, ICO_CASCADE, argv[0]);
#else // OS_WIN32
return UnixService(argc, argv, "sevpnserver", StartProcess, StopProcess);
return UnixService(argc, argv, "vpnserver", StartProcess, StopProcess);
#endif // OS_WIN32
}