Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/SoftEtherVPN/SoftEtherVPN_Stable.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/Cedar/Link.h')
-rw-r--r--src/Cedar/Link.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/Cedar/Link.h b/src/Cedar/Link.h
index e381e414..87196021 100644
--- a/src/Cedar/Link.h
+++ b/src/Cedar/Link.h
@@ -119,6 +119,7 @@ struct LINK
bool Started; // Running flag
volatile bool Halting; // Halting flag
bool Offline; // Offline
+ bool NoOnline; // Do not set to online flag
REF *ref; // Reference counter
LOCK *lock; // Lock
CEDAR *Cedar; // Cedar
@@ -129,9 +130,14 @@ struct LINK
CLIENT_AUTH *Auth; // Authentication data
POLICY *Policy; // Policy
QUEUE *SendPacketQueue; // Transmission packet queue
+ UINT CurrentSendPacketQueueSize; // Current send packet queue size
UINT LastError; // Last error
bool CheckServerCert; // To check the server certificate
X *ServerCert; // Server certificate
+ bool LockFlag; // Lock flag
+ bool *StopAllLinkFlag; // Stop all link flag
+ UINT LastServerConnectionReceivedBlocksNum; // Last server connection recv queue num
+ UINT Flag1;
};