1
0
mirror of https://github.com/SoftEtherVPN/SoftEtherVPN.git synced 2025-07-07 00:04:57 +03:00

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

This commit is contained in:
Davide Beatrici
2018-09-23 17:05:45 +02:00
committed by GitHub
7 changed files with 10 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);
}