1
0
mirror of https://github.com/SoftEtherVPN/SoftEtherVPN.git synced 2024-09-19 10:10:40 +03:00

vpncmd: Added information about "Disable UDP Acceleration" setting into output of AccountGet command.

This commit is contained in:
mogikanin 2018-09-17 09:22:50 +03:00
parent ca8b392dc6
commit 825a5a828e
2 changed files with 5 additions and 0 deletions

View File

@ -4465,6 +4465,10 @@ UINT PcAccountGet(CONSOLE *c, char *cmd_name, wchar_t *str, void *param)
// Disable the QoS control
CtInsert(ct, _UU("CMD_ACCOUNT_COLUMN_QOS_DISABLE"),
t.ClientOption->DisableQoS ? _UU("CMD_MSG_ENABLE") : _UU("CMD_MSG_DISABLE"));
// Disable UDP Acceleration
CtInsert(ct, _UU("CMD_ACCOUNT_COLUMN_DISABLEUDP"),
t.ClientOption->NoUdpAcceleration ? _UU("CMD_MSG_ENABLE") : _UU("CMD_MSG_DISABLE"));
CtFree(ct, c);
}

View File

@ -4371,6 +4371,7 @@ CMD_ACCOUNT_COLUMN_BRIDGE_ROUTER Connect by Bridge / Router Mode
CMD_ACCOUNT_COLUMN_MONITOR Connect by Monitoring Mode
CMD_ACCOUNT_COLUMN_NO_TRACKING No Adjustment for Routing Table
CMD_ACCOUNT_COLUMN_QOS_DISABLE Do not Use QoS Control Function
CMD_ACCOUNT_COLUMN_DISABLEUDP Disable UDP Acceleration
# Debugging Information Collecting Tool