mirror of
https://github.com/SoftEtherVPN/SoftEtherVPN.git
synced 2025-06-28 11:55:08 +03:00
spelling: maintain
This commit is contained in:
parent
08d9f1ace7
commit
1050bee6c8
@ -5757,7 +5757,7 @@ void ProcessIKEInterrupts(IKE_SERVER *ike)
|
|||||||
while (ike->StateHasChanged);
|
while (ike->StateHasChanged);
|
||||||
|
|
||||||
// Maintenance of the thread list
|
// Maintenance of the thread list
|
||||||
MainteThreadList(ike->ThreadList);
|
MaintainThreadList(ike->ThreadList);
|
||||||
/*Debug("ike->ThreadList: %u\n", LIST_NUM(ike->ThreadList));
|
/*Debug("ike->ThreadList: %u\n", LIST_NUM(ike->ThreadList));
|
||||||
{
|
{
|
||||||
UINT i;
|
UINT i;
|
||||||
|
@ -2562,7 +2562,7 @@ void L2TPProcessInterrupts(L2TP_SERVER *l2tp)
|
|||||||
// Maintenance the thread list
|
// Maintenance the thread list
|
||||||
if (l2tp->IkeServer == NULL)
|
if (l2tp->IkeServer == NULL)
|
||||||
{
|
{
|
||||||
MainteThreadList(l2tp->ThreadList);
|
MaintainThreadList(l2tp->ThreadList);
|
||||||
//Debug("l2tp->ThreadList: %u\n", LIST_NUM(l2tp->ThreadList));
|
//Debug("l2tp->ThreadList: %u\n", LIST_NUM(l2tp->ThreadList));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -423,7 +423,7 @@ void AddThreadToThreadList(LIST *o, THREAD *t)
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Maintain thread list
|
// Maintain thread list
|
||||||
void MainteThreadList(LIST *o)
|
void MaintainThreadList(LIST *o)
|
||||||
{
|
{
|
||||||
UINT i;
|
UINT i;
|
||||||
LIST *delete_list = NULL;
|
LIST *delete_list = NULL;
|
||||||
|
@ -274,7 +274,7 @@ UINT DoNothing();
|
|||||||
LIST *NewThreadList();
|
LIST *NewThreadList();
|
||||||
void AddThreadToThreadList(LIST *o, THREAD *t);
|
void AddThreadToThreadList(LIST *o, THREAD *t);
|
||||||
void DelThreadFromThreadList(LIST *o, THREAD *t);
|
void DelThreadFromThreadList(LIST *o, THREAD *t);
|
||||||
void MainteThreadList(LIST *o);
|
void MaintainThreadList(LIST *o);
|
||||||
void FreeThreadList(LIST *o);
|
void FreeThreadList(LIST *o);
|
||||||
void StopThreadList(LIST *o);
|
void StopThreadList(LIST *o);
|
||||||
void WaitAllThreadsWillBeStopped(LIST *o);
|
void WaitAllThreadsWillBeStopped(LIST *o);
|
||||||
|
Loading…
Reference in New Issue
Block a user