1
0
mirror of https://github.com/SoftEtherVPN/SoftEtherVPN.git synced 2025-06-28 11:55:08 +03:00

spelling: accept

This commit is contained in:
Josh Soref 2018-02-28 02:22:11 +00:00
parent 03443ab1c4
commit 5062f506e0
2 changed files with 2 additions and 2 deletions

View File

@ -562,7 +562,7 @@ void ListenerTCPMainLoop(LISTENER *r)
goto STOP; goto STOP;
} }
// Accpet loop // Accept loop
while (true) while (true)
{ {
// Accept // Accept

View File

@ -287,7 +287,7 @@ typedef struct __CPU_Private_Data
ULONG C; ///< Zero-based index of the consumer in the buffer. It indicates the first free byte to be read. ULONG C; ///< Zero-based index of the consumer in the buffer. It indicates the first free byte to be read.
ULONG Free; ///< Number of the free bytes in the buffer ULONG Free; ///< Number of the free bytes in the buffer
PUCHAR Buffer; ///< Pointer to the kernel buffer used to capture packets. PUCHAR Buffer; ///< Pointer to the kernel buffer used to capture packets.
ULONG Accepted; ///< Number of packet that current capture instance acepted, from its opening. A packet ULONG Accepted; ///< Number of packet that current capture instance accepted, from its opening. A packet
///< is accepted if it passes the filter and fits in the buffer. Accepted packets are the ///< is accepted if it passes the filter and fits in the buffer. Accepted packets are the
///< ones that reach the application. ///< ones that reach the application.
///< This number is related to the particular CPU this structure is referring to. ///< This number is related to the particular CPU this structure is referring to.