mirror of
https://github.com/SoftEtherVPN/SoftEtherVPN.git
synced 2025-07-12 02:34:59 +03:00
remove unused functions (identified by cppcheck)
[src/Cedar/Account.c:854]: (style) The function 'AddGroupTraffic' is never used. [src/Mayaqua/Secure.c:1455]: (style) The function 'AddSecObjToEnumCache' is never used. [src/Mayaqua/Network.c:18445]: (style) The function 'AddSockList' is never used. [src/Cedar/Account.c:870]: (style) The function 'AddUserTraffic' is never used. [src/Cedar/Server.c:1045]: (style) The function 'AdjoinEnumLogFile' is never used. [src/Cedar/Admin.c:13780]: (style) The function 'AdminConnect' is never used. [src/Mayaqua/Encrypt.c:855]: (style) The function 'BigNumToStr' is never used. [src/Mayaqua/Str.c:2113]: (style) The function 'Bit128ToStr' is never used. [src/Mayaqua/Encrypt.c:898]: (style) The function 'BufToBigNum' is never used. [src/Mayaqua/Internat.c:1874]: (style) The function 'CalcStrToUtf8' is never used. [src/Cedar/Hub.c:6689]: (style) The function 'CalcTrafficDiff' is never used. [src/Mayaqua/Internat.c:1819]: (style) The function 'CalcUtf8ToStr' is never used. [src/Mayaqua/Network.c:6495]: (style) The function 'CanGetTcpProcessId' is never used. [src/Cedar/WinUi.c:7226]: (style) The function 'CbInsertStrA' is never used. [src/Cedar/Client.c:3035]: (style) The function 'CcEnumObjectInSecure' is never used. [src/Cedar/Client.c:2826]: (style) The function 'CcGetCommonProxySetting' is never used. [src/Cedar/Client.c:2857]: (style) The function 'CcSetCommonProxySetting' is never used. [src/Cedar/Cedar.c:575]: (style) The function 'CedarLog' is never used. [src/Cedar/WinUi.c:9841]: (style) The function 'Center2' is never used. [src/Mayaqua/Encrypt.c:814]: (style) The function 'CertTest' is never used. [src/Mayaqua/Encrypt.c:809]: (style) The function 'CertTest2' is never used. [src/Mayaqua/Encrypt.c:819]: (style) The function 'CertTest_' is never used. [src/Mayaqua/Cfg.c:1705]: (style) The function 'CfgIsFolder' is never used.
This commit is contained in:
committed by
Moataz Elmasry
parent
56c4582da8
commit
79c06146a4
@ -2821,69 +2821,6 @@ UINT CcDeleteCa(REMOTE_CLIENT *r, RPC_CLIENT_DELETE_CA *c)
|
||||
return err;
|
||||
}
|
||||
|
||||
|
||||
// Get the proxy setting
|
||||
UINT CcGetCommonProxySetting(REMOTE_CLIENT *r, INTERNET_SETTING *a)
|
||||
{
|
||||
PACK *p, *ret;
|
||||
UINT err = 0;
|
||||
// Validate arguments
|
||||
if (r == NULL || a == NULL)
|
||||
{
|
||||
return ERR_INTERNAL_ERROR;
|
||||
}
|
||||
|
||||
p = NewPack();
|
||||
OutRpcInternetSetting(p, a);
|
||||
|
||||
ret = RpcCall(r->Rpc, "GetCommonProxySetting", p);
|
||||
|
||||
if (RpcIsOk(ret))
|
||||
{
|
||||
Zero(a, sizeof(INTERNET_SETTING));
|
||||
InRpcInternetSetting(a, ret);
|
||||
}
|
||||
else
|
||||
{
|
||||
err = RpcGetError(ret);
|
||||
}
|
||||
|
||||
FreePack(ret);
|
||||
|
||||
return err;
|
||||
}
|
||||
|
||||
// Set the proxy setting
|
||||
UINT CcSetCommonProxySetting(REMOTE_CLIENT *r, INTERNET_SETTING *a)
|
||||
{
|
||||
PACK *p, *ret;
|
||||
UINT err = 0;
|
||||
// Validate arguments
|
||||
if (r == NULL || a == NULL)
|
||||
{
|
||||
return ERR_INTERNAL_ERROR;
|
||||
}
|
||||
|
||||
p = NewPack();
|
||||
OutRpcInternetSetting(p, a);
|
||||
|
||||
ret = RpcCall(r->Rpc, "SetCommonProxySetting", p);
|
||||
|
||||
if (RpcIsOk(ret))
|
||||
{
|
||||
Zero(a, sizeof(INTERNET_SETTING));
|
||||
InRpcInternetSetting(a, ret);
|
||||
}
|
||||
else
|
||||
{
|
||||
err = RpcGetError(ret);
|
||||
}
|
||||
|
||||
FreePack(ret);
|
||||
|
||||
return err;
|
||||
}
|
||||
|
||||
// Get the issuer
|
||||
UINT CcGetIssuer(REMOTE_CLIENT *r, RPC_GET_ISSUER *a)
|
||||
{
|
||||
@ -3031,33 +2968,6 @@ UINT CcUseSecure(REMOTE_CLIENT *r, RPC_USE_SECURE *sec)
|
||||
return err;
|
||||
}
|
||||
|
||||
// Enumerate objects in the secure device
|
||||
UINT CcEnumObjectInSecure(REMOTE_CLIENT *r, RPC_ENUM_OBJECT_IN_SECURE *e)
|
||||
{
|
||||
PACK *ret;
|
||||
UINT err = 0;
|
||||
// Validate arguments
|
||||
if (r == NULL || e == NULL)
|
||||
{
|
||||
return ERR_INTERNAL_ERROR;
|
||||
}
|
||||
|
||||
ret = RpcCall(r->Rpc, "EnumObjectInSecure", NULL);
|
||||
|
||||
if (RpcIsOk(ret))
|
||||
{
|
||||
InRpcEnumObjectInSecure(e, ret);
|
||||
}
|
||||
else
|
||||
{
|
||||
err = RpcGetError(ret);
|
||||
}
|
||||
|
||||
FreePack(ret);
|
||||
|
||||
return err;
|
||||
}
|
||||
|
||||
// Get a next recommended virtual LAN card name
|
||||
bool CiGetNextRecommendedVLanName(REMOTE_CLIENT *r, char *name, UINT size)
|
||||
{
|
||||
|
Reference in New Issue
Block a user