diff options
author | Tom Lane | 2004-03-23 01:23:48 +0000 |
---|---|---|
committer | Tom Lane | 2004-03-23 01:23:48 +0000 |
commit | 2e45c143ef5963aa0f705350a017404c9b107f27 (patch) | |
tree | 7f3a3a56615529c3e83e595e68e27ea575740b9c /src/include/miscadmin.h | |
parent | 0d88dd1e50a9b0fc907936627baec70e0dcf63f0 (diff) |
Replace the virtual_host and tcpip_socket parameters with a unified
listen_addresses parameter, as per recent discussion. The default behavior
is now to listen on localhost, which eliminates the need for the -i
postmaster switch in many scenarios.
Andrew Dunstan
Diffstat (limited to 'src/include/miscadmin.h')
-rw-r--r-- | src/include/miscadmin.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/include/miscadmin.h b/src/include/miscadmin.h index b43d481c52a..f34ebb09865 100644 --- a/src/include/miscadmin.h +++ b/src/include/miscadmin.h @@ -12,7 +12,7 @@ * Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/miscadmin.h,v 1.153 2004/02/10 03:42:45 tgl Exp $ + * $PostgreSQL: pgsql/src/include/miscadmin.h,v 1.154 2004/03/23 01:23:48 tgl Exp $ * * NOTES * some of the information in this file should be moved to @@ -212,7 +212,6 @@ extern bool VacuumCostActive; * A few postmaster startup options are exported here so the * configuration file processor can access them. */ -extern bool NetServer; extern bool EnableSSL; extern bool SilentMode; extern int MaxBackends; @@ -222,7 +221,7 @@ extern int PostPortNumber; extern int Unix_socket_permissions; extern char *Unix_socket_group; extern char *UnixSocketDir; -extern char *VirtualHost; +extern char *ListenAddresses; /***************************************************************************** |