mirror of
https://github.com/SoftEtherVPN/SoftEtherVPN.git
synced 2025-07-12 10:44:58 +03:00
Cleanup check of blank realm name
Store realm name in hub struct using a preallocated string instead of a pointer
This commit is contained in:
@ -424,7 +424,7 @@ struct HUB
|
||||
UINT RadiusRetryInterval; // Radius retry interval
|
||||
BUF *RadiusSecret; // Radius shared key
|
||||
char RadiusSuffixFilter[MAX_SIZE]; // Radius suffix filter
|
||||
char *RadiusRealm; // Radius realm (optional)
|
||||
char RadiusRealm[MAX_SIZE]; // Radius realm (optional)
|
||||
volatile bool Halt; // Halting flag
|
||||
bool Offline; // Offline
|
||||
bool BeingOffline; // Be Doing Offline
|
||||
|
Reference in New Issue
Block a user