mirror of
https://github.com/postgres/postgres.git
synced 2025-11-01 21:31:19 +03:00
Support multiple RADIUS servers
This changes all the RADIUS related parameters (radiusserver, radiussecret, radiusport, radiusidentifier) to be plural and to accept a comma separated list of servers, which will be tried in order. Reviewed by Adam Brightwell
This commit is contained in:
@@ -89,10 +89,14 @@ typedef struct HbaLine
|
||||
bool include_realm;
|
||||
bool compat_realm;
|
||||
bool upn_username;
|
||||
char *radiusserver;
|
||||
char *radiussecret;
|
||||
char *radiusidentifier;
|
||||
int radiusport;
|
||||
List *radiusservers;
|
||||
char *radiusservers_s;
|
||||
List *radiussecrets;
|
||||
char *radiussecrets_s;
|
||||
List *radiusidentifiers;
|
||||
char *radiusidentifiers_s;
|
||||
List *radiusports;
|
||||
char *radiusports_s;
|
||||
} HbaLine;
|
||||
|
||||
typedef struct IdentLine
|
||||
|
||||
Reference in New Issue
Block a user