1
0
mirror of https://github.com/postgres/postgres.git synced 2025-08-17 01:02:17 +03:00

Support key word 'all' in host column of pg_hba.conf

This commit is contained in:
Peter Eisentraut
2010-10-18 22:14:47 +03:00
parent 433c7a6545
commit bc8624b15d
3 changed files with 10 additions and 4 deletions

View File

@@ -885,8 +885,11 @@ parse_hba_line(List *line, int line_num, HbaLine *parsedline)
}
token = lfirst(line_item);
/* Is it equal to 'samehost' or 'samenet'? */
if (strcmp(token, "samehost\n") == 0)
if (strcmp(token, "all\n") == 0)
{
parsedline->ip_cmp_method = ipCmpAll;
}
else if (strcmp(token, "samehost\n") == 0)
{
/* Any IP on this host is allowed to connect */
parsedline->ip_cmp_method = ipCmpSameHost;
@@ -1503,6 +1506,8 @@ check_hba(hbaPort *port)
continue;
}
break;
case ipCmpAll:
break;
case ipCmpSameHost:
case ipCmpSameNet:
if (!check_same_host_or_net(&port->raddr,