mirror of
https://github.com/SoftEtherVPN/SoftEtherVPN.git
synced 2025-07-07 08:14:58 +03:00
- Fixed the problem occurs when RPC messages between Cluster Members exceed 64Kbytes.
- Fixed the RADIUS PEAP client to use the standard TLS versioning. - Implementation of a function to fix the MAC address of L3 VPN protocol by entering e.g. "MAC: 112233445566" in the "Notes" field of the user information. - Implementation of a function to fix the virtual MAC address to be assigned to the L3 VPN client as a string attribute from RADIUS server when authentication.
This commit is contained in:
@ -10099,12 +10099,17 @@ void SiFarmServMain(SERVER *server, SOCK *sock, FARM_MEMBER *f)
|
||||
}
|
||||
|
||||
// Receive
|
||||
p = HttpServerRecv(sock);
|
||||
p = HttpServerRecvEx(sock, FIRM_SERV_RECV_PACK_MAX_SIZE);
|
||||
|
||||
t->Response = p;
|
||||
Set(t->CompleteEvent);
|
||||
|
||||
send_noop = false;
|
||||
if (p == NULL)
|
||||
{
|
||||
// Avoid infinite loop
|
||||
Disconnect(sock);
|
||||
goto DISCONNECTED;
|
||||
}
|
||||
}
|
||||
}
|
||||
while (t != NULL);
|
||||
|
Reference in New Issue
Block a user