From 2e45c143ef5963aa0f705350a017404c9b107f27 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Tue, 23 Mar 2004 01:23:48 +0000 Subject: 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 --- src/include/miscadmin.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'src/include/miscadmin.h') 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; /***************************************************************************** -- cgit v1.2.3