Noah,

> No, PQping("host='127.0.0.1'") fails to reach a listen_addresses='::' server
> on many systems.  Here's what I thought Kondo was proposing:
> 
> --- a/src/bin/pg_ctl/pg_ctl.c
> +++ b/src/bin/pg_ctl/pg_ctl.c
> @@ -649,5 +649,9 @@ test_postmaster_connection(pgpid_t pm_pid, bool 
> do_checkpoint)
>  
> -                                             /* If postmaster is listening 
> on "*", use localhost */
> +                                             /* explanation here */
>                                               if (strcmp(host_str, "*") == 0)
>                                                       strcpy(host_str, 
> "localhost");
> +                                             else if (strcmp(host_str, 
> "0.0.0.0") == 0)
> +                                                     strcpy(host_str, 
> "127.0.0.1");
> +                                             else if (strcmp(host_str, "::") 
> == 0)
> +                                                     strcpy(host_str, "::1");
>  

I see. Would you like to commit this?

Best regards,
--
Tatsuo Ishii
SRA OSS, Inc. Japan
English: http://www.sraoss.co.jp/index_en.php
Japanese:http://www.sraoss.co.jp


-- 
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers

Reply via email to