mirror of
https://github.com/SoftEtherVPN/SoftEtherVPN.git
synced 2025-07-10 01:34:58 +03:00
v4.06-9430-beta
This commit is contained in:
@ -14,7 +14,6 @@
|
||||
// Author: Daiyuu Nobori
|
||||
// Comments: Tetsuo Sugiyama, Ph.D.
|
||||
//
|
||||
//
|
||||
// This program is free software; you can redistribute it and/or
|
||||
// modify it under the terms of the GNU General Public License
|
||||
// version 2 as published by the Free Software Foundation.
|
||||
@ -85,6 +84,13 @@
|
||||
// http://www.softether.org/ and ask your question on the users forum.
|
||||
//
|
||||
// Thank you for your cooperation.
|
||||
//
|
||||
//
|
||||
// NO MEMORY OR RESOURCE LEAKS
|
||||
// ---------------------------
|
||||
//
|
||||
// The memory-leaks and resource-leaks verification under the stress
|
||||
// test has been passed before release this source code.
|
||||
|
||||
|
||||
// Cedar.c
|
||||
@ -1246,6 +1252,8 @@ void CleanupCedar(CEDAR *c)
|
||||
|
||||
DeleteLock(c->OpenVPNPublicPortsLock);
|
||||
|
||||
DeleteLock(c->CurrentRegionLock);
|
||||
|
||||
Free(c);
|
||||
}
|
||||
|
||||
@ -1505,6 +1513,8 @@ CEDAR *NewCedar(X *server_x, K *server_k)
|
||||
|
||||
c->CedarSuperLock = NewLock();
|
||||
|
||||
c->CurrentRegionLock = NewLock();
|
||||
|
||||
#ifdef BETA_NUMBER
|
||||
c->Beta = BETA_NUMBER;
|
||||
#endif // BETA_NUMBER
|
||||
|
Reference in New Issue
Block a user