mirror of
https://github.com/SoftEtherVPN/SoftEtherVPN.git
synced 2024-11-22 17:39:53 +03:00
vpncmd: Added information about "Disable UDP Acceleration" setting into output of AccountGet command.
This commit is contained in:
parent
ca8b392dc6
commit
825a5a828e
@ -4465,6 +4465,10 @@ UINT PcAccountGet(CONSOLE *c, char *cmd_name, wchar_t *str, void *param)
|
|||||||
// Disable the QoS control
|
// Disable the QoS control
|
||||||
CtInsert(ct, _UU("CMD_ACCOUNT_COLUMN_QOS_DISABLE"),
|
CtInsert(ct, _UU("CMD_ACCOUNT_COLUMN_QOS_DISABLE"),
|
||||||
t.ClientOption->DisableQoS ? _UU("CMD_MSG_ENABLE") : _UU("CMD_MSG_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);
|
CtFree(ct, c);
|
||||||
}
|
}
|
||||||
|
@ -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_MONITOR Connect by Monitoring Mode
|
||||||
CMD_ACCOUNT_COLUMN_NO_TRACKING No Adjustment for Routing Table
|
CMD_ACCOUNT_COLUMN_NO_TRACKING No Adjustment for Routing Table
|
||||||
CMD_ACCOUNT_COLUMN_QOS_DISABLE Do not Use QoS Control Function
|
CMD_ACCOUNT_COLUMN_QOS_DISABLE Do not Use QoS Control Function
|
||||||
|
CMD_ACCOUNT_COLUMN_DISABLEUDP Disable UDP Acceleration
|
||||||
|
|
||||||
|
|
||||||
# Debugging Information Collecting Tool
|
# Debugging Information Collecting Tool
|
||||||
|
Loading…
Reference in New Issue
Block a user