*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.170 2000/10/11 17:55:32 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.171 2000/10/11 17:58:01 momjian Exp $
*
* NOTES
*
exit(1);
}
- /*
- * Select default values for switches where needed
- */
- if (HostName == NULL)
- {
- if (!(HostName = getenv("PGHOST")))
- {
- HostName = "any";
- }
- }
- else if (!NetServer)
- {
- fprintf(stderr, "%s: -h requires -i.\n", progname);
- exit(1);
- }
-
/*
* Check for invalid combinations of switches
*/
* Support for grand unified configuration scheme, including SET
* command, configuration file, and command line options.
*
- * $Header: /cvsroot/pgsql/src/backend/utils/misc/guc.c,v 1.13 2000/10/11 17:55:32 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/utils/misc/guc.c,v 1.14 2000/10/11 17:58:01 momjian Exp $
*
* Copyright 2000 by PostgreSQL Global Development Group
* Written by Peter Eisentraut
.
DEF_NBUFFERS, 16, INT_MAX},
{"port", PGC_POSTMASTER, &PostPortName,
DEF_PGPORT, 1, 65535},
- {"unixsocket", PGC_POSTMASTER, &UnixSocketName,
- DEF_PGSOCKETFILE, 1, 65535},
{"sort_mem", PGC_USERSET, &SortMem,
512, 1, INT_MAX},
}
if (getenv("PGPORT"))
- PostPortNumber = atoi(getenv("PGPORT"));
-
- if (UnixSocketName == NULL)
- UnixSocketName = getenv("PGUNIXSOCKET");
+ PostPortName = atoi(getenv("PGPORT"));
}