diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2004-08-08 20:17:36 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2004-08-08 20:17:36 +0000 |
commit | 33bf242a8a30a5294b3aa8034d71e6a49be5320c (patch) | |
tree | 00c189868e988abe492b9569fd104d72b05a4695 /doc/src | |
parent | dc199eafa7193992a8b03b3b1fcb14fdbea277f5 (diff) | |
download | postgresql-33bf242a8a30a5294b3aa8034d71e6a49be5320c.tar.gz postgresql-33bf242a8a30a5294b3aa8034d71e6a49be5320c.zip |
Make listen_addresses be a comma-separated list instead of a space-separated
list. More consistent with our other list-containing GUC variables.
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/runtime.sgml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/sgml/runtime.sgml b/doc/src/sgml/runtime.sgml index d393a6d1803..117a0eb21b3 100644 --- a/doc/src/sgml/runtime.sgml +++ b/doc/src/sgml/runtime.sgml @@ -1,5 +1,5 @@ <!-- -$PostgreSQL: pgsql/doc/src/sgml/runtime.sgml,v 1.274 2004/08/08 19:42:56 tgl Exp $ +$PostgreSQL: pgsql/doc/src/sgml/runtime.sgml,v 1.275 2004/08/08 20:17:33 tgl Exp $ --> <Chapter Id="runtime"> @@ -626,7 +626,7 @@ SET ENABLE_SEQSCAN TO OFF; <para> Specifies the TCP/IP address(es) on which the server is to listen for connections from client applications. - The value takes the form of a space-separated list of host names + The value takes the form of a comma-separated list of host names and/or numeric IP addresses. The special entry <literal>*</> corresponds to all available IP interfaces. If the list is empty, the server does not listen on any IP interface |