mirror of
https://github.com/SoftEtherVPN/SoftEtherVPN.git
synced 2025-06-28 11:55:08 +03:00
spelling: connection
This commit is contained in:
parent
06447379f1
commit
0364ed9b13
@ -465,7 +465,7 @@ PACK *AdminDispatch(RPC *rpc, char *name, PACK *p)
|
||||
DECLARE_RPC("DeleteHub", RPC_DELETE_HUB, StDeleteHub, InRpcDeleteHub, OutRpcDeleteHub)
|
||||
DECLARE_RPC("GetHubRadius", RPC_RADIUS, StGetHubRadius, InRpcRadius, OutRpcRadius)
|
||||
DECLARE_RPC("SetHubRadius", RPC_RADIUS, StSetHubRadius, InRpcRadius, OutRpcRadius)
|
||||
DECLARE_RPC_EX("EnumConnection", RPC_ENUM_CONNECTION, StEnumConnection, InRpcEnumConnection, OutRpcEnumConnection, FreeRpcEnumConnetion)
|
||||
DECLARE_RPC_EX("EnumConnection", RPC_ENUM_CONNECTION, StEnumConnection, InRpcEnumConnection, OutRpcEnumConnection, FreeRpcEnumConnection)
|
||||
DECLARE_RPC("DisconnectConnection", RPC_DISCONNECT_CONNECTION, StDisconnectConnection, InRpcDisconnectConnection, OutRpcDisconnectConnection)
|
||||
DECLARE_RPC("GetConnectionInfo", RPC_CONNECTION_INFO, StGetConnectionInfo, InRpcConnectionInfo, OutRpcConnectionInfo)
|
||||
DECLARE_RPC("SetHubOnline", RPC_SET_HUB_ONLINE, StSetHubOnline, InRpcSetHubOnline, OutRpcSetHubOnline)
|
||||
@ -644,7 +644,7 @@ DECLARE_SC_EX("EnumHub", RPC_ENUM_HUB, ScEnumHub, InRpcEnumHub, OutRpcEnumHub, F
|
||||
DECLARE_SC("DeleteHub", RPC_DELETE_HUB, ScDeleteHub, InRpcDeleteHub, OutRpcDeleteHub)
|
||||
DECLARE_SC("GetHubRadius", RPC_RADIUS, ScGetHubRadius, InRpcRadius, OutRpcRadius)
|
||||
DECLARE_SC("SetHubRadius", RPC_RADIUS, ScSetHubRadius, InRpcRadius, OutRpcRadius)
|
||||
DECLARE_SC_EX("EnumConnection", RPC_ENUM_CONNECTION, ScEnumConnection, InRpcEnumConnection, OutRpcEnumConnection, FreeRpcEnumConnetion)
|
||||
DECLARE_SC_EX("EnumConnection", RPC_ENUM_CONNECTION, ScEnumConnection, InRpcEnumConnection, OutRpcEnumConnection, FreeRpcEnumConnection)
|
||||
DECLARE_SC("DisconnectConnection", RPC_DISCONNECT_CONNECTION, ScDisconnectConnection, InRpcDisconnectConnection, OutRpcDisconnectConnection)
|
||||
DECLARE_SC("GetConnectionInfo", RPC_CONNECTION_INFO, ScGetConnectionInfo, InRpcConnectionInfo, OutRpcConnectionInfo)
|
||||
DECLARE_SC("SetHubOnline", RPC_SET_HUB_ONLINE, ScSetHubOnline, InRpcSetHubOnline, OutRpcSetHubOnline)
|
||||
@ -7580,7 +7580,7 @@ UINT StEnumConnection(ADMIN *a, RPC_ENUM_CONNECTION *t)
|
||||
|
||||
SERVER_ADMIN_ONLY;
|
||||
|
||||
FreeRpcEnumConnetion(t);
|
||||
FreeRpcEnumConnection(t);
|
||||
Zero(t, sizeof(RPC_ENUM_CONNECTION));
|
||||
|
||||
LockList(c->ConnectionList);
|
||||
@ -11507,7 +11507,7 @@ void OutRpcEnumConnection(PACK *p, RPC_ENUM_CONNECTION *t)
|
||||
PackAddIntEx(p, "Type", e->Type, i, t->NumConnection);
|
||||
}
|
||||
}
|
||||
void FreeRpcEnumConnetion(RPC_ENUM_CONNECTION *t)
|
||||
void FreeRpcEnumConnection(RPC_ENUM_CONNECTION *t)
|
||||
{
|
||||
// Validate arguments
|
||||
if (t == NULL)
|
||||
|
@ -1355,7 +1355,7 @@ void InRpcDeleteHub(RPC_DELETE_HUB *t, PACK *p);
|
||||
void OutRpcDeleteHub(PACK *p, RPC_DELETE_HUB *t);
|
||||
void InRpcEnumConnection(RPC_ENUM_CONNECTION *t, PACK *p);
|
||||
void OutRpcEnumConnection(PACK *p, RPC_ENUM_CONNECTION *t);
|
||||
void FreeRpcEnumConnetion(RPC_ENUM_CONNECTION *t);
|
||||
void FreeRpcEnumConnection(RPC_ENUM_CONNECTION *t);
|
||||
void InRpcDisconnectConnection(RPC_DISCONNECT_CONNECTION *t, PACK *p);
|
||||
void OutRpcDisconnectConnection(PACK *p, RPC_DISCONNECT_CONNECTION *t);
|
||||
void InRpcConnectionInfo(RPC_CONNECTION_INFO *t, PACK *p);
|
||||
|
@ -8791,7 +8791,7 @@ UINT PsConnectionList(CONSOLE *c, char *cmd_name, wchar_t *str, void *param)
|
||||
|
||||
CtFree(ct, c);
|
||||
|
||||
FreeRpcEnumConnetion(&t);
|
||||
FreeRpcEnumConnection(&t);
|
||||
|
||||
FreeParamValueList(o);
|
||||
|
||||
|
@ -16120,7 +16120,7 @@ void SmConnectionDlgRefresh(HWND hWnd, SM_SERVER *p)
|
||||
|
||||
LvInsertEnd(b, hWnd, L_LIST);
|
||||
|
||||
FreeRpcEnumConnetion(&t);
|
||||
FreeRpcEnumConnection(&t);
|
||||
}
|
||||
|
||||
// Update the control
|
||||
|
@ -1558,7 +1558,7 @@ void GetServerCapsMain(SERVER *s, CAPSLIST *t)
|
||||
// Maximum NAT table size / Virtual HUB
|
||||
AddCapsInt(t, "i_max_secnat_tables", NAT_MAX_SESSIONS);
|
||||
|
||||
// Cascade connction
|
||||
// Cascade connection
|
||||
if (s->ServerType == SERVER_TYPE_STANDALONE)
|
||||
{
|
||||
AddCapsBool(t, "b_support_cascade", true);
|
||||
@ -1620,7 +1620,7 @@ void GetServerCapsMain(SERVER *s, CAPSLIST *t)
|
||||
AddCapsBool(t, "b_tap_supported", GetOsInfo()->OsType == OSTYPE_LINUX ? true : false);
|
||||
}
|
||||
|
||||
// Cascade connction
|
||||
// Cascade connection
|
||||
if (s->ServerType == SERVER_TYPE_STANDALONE)
|
||||
{
|
||||
AddCapsBool(t, "b_support_cascade", true);
|
||||
|
@ -371,7 +371,7 @@ SEC_PIN_CHANGE_FAILED Changing of PIN code failed.
|
||||
SEC_PIN_OK The PIN code has been changed.
|
||||
|
||||
|
||||
# TCP Connecion Dialog
|
||||
# TCP Connection Dialog
|
||||
CONNECTDLG_CAPTION Connecting
|
||||
CONNECTDLG_MESSAGE Connecting to the server "%S" (TCP port: %u)...
|
||||
CONNECTDLG_CANCELING Aborting the connection. Please wait...
|
||||
|
Loading…
Reference in New Issue
Block a user