aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2000-11-25 22:34:14 +0000
committerBruce Momjian <bruce@momjian.us>2000-11-25 22:34:14 +0000
commit74dc04a034bc32f45738541f88e2d5e9e322cf59 (patch)
tree14696ce63402b79d076514e9f5c7e57d3ef6c045
parentd8bc37eb1612c67278014c23369fccdb9f76d1e0 (diff)
downloadpostgresql-74dc04a034bc32f45738541f88e2d5e9e322cf59.tar.gz
postgresql-74dc04a034bc32f45738541f88e2d5e9e322cf59.zip
Move connection defines to miscadmin.h.
-rw-r--r--src/include/libpq/pqcomm.h11
-rw-r--r--src/include/miscadmin.h7
2 files changed, 7 insertions, 11 deletions
diff --git a/src/include/libpq/pqcomm.h b/src/include/libpq/pqcomm.h
index ceb6956bb17..90caf8ff5c5 100644
--- a/src/include/libpq/pqcomm.h
+++ b/src/include/libpq/pqcomm.h
@@ -9,7 +9,7 @@
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: pqcomm.h,v 1.50 2000/11/25 04:13:18 momjian Exp $
+ * $Id: pqcomm.h,v 1.51 2000/11/25 22:34:14 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -172,13 +172,4 @@ typedef struct CancelRequestPacket
#define NEGOTIATE_SSL_CODE PG_PROTOCOL(1234,5679)
-/*
- * Configuration options
- */
-extern int Unix_socket_permissions;
-
-extern char * Unix_socket_group;
-extern char * UnixSocketDir;
-extern char * Virtual_host;
-
#endif /* PQCOMM_H */
diff --git a/src/include/miscadmin.h b/src/include/miscadmin.h
index 11711d3d472..cff6439dde3 100644
--- a/src/include/miscadmin.h
+++ b/src/include/miscadmin.h
@@ -12,7 +12,7 @@
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: miscadmin.h,v 1.73 2000/11/25 05:00:30 momjian Exp $
+ * $Id: miscadmin.h,v 1.74 2000/11/25 22:34:13 momjian Exp $
*
* NOTES
* some of the information in this file will be moved to
@@ -111,6 +111,11 @@ extern bool SilentMode;
extern int MaxBackends;
extern int NBuffers;
extern int PostPortNumber;
+extern int Unix_socket_permissions;
+extern char *Unix_socket_group;
+extern char *UnixSocketDir;
+extern char *Virtual_host;
+
/*****************************************************************************
* pdir.h -- *