Skip to content
Snippets Groups Projects
Commit 74dc04a0 authored by Bruce Momjian's avatar Bruce Momjian
Browse files

Move connection defines to miscadmin.h.

parent d8bc37eb
No related branches found
No related tags found
No related merge requests found
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc * Portions Copyright (c) 1996-2000, PostgreSQL, Inc
* Portions Copyright (c) 1994, Regents of the University of California * 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 ...@@ -172,13 +172,4 @@ typedef struct CancelRequestPacket
#define NEGOTIATE_SSL_CODE PG_PROTOCOL(1234,5679) #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 */ #endif /* PQCOMM_H */
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc * Portions Copyright (c) 1996-2000, PostgreSQL, Inc
* Portions Copyright (c) 1994, Regents of the University of California * 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 * NOTES
* some of the information in this file will be moved to * some of the information in this file will be moved to
...@@ -111,6 +111,11 @@ extern bool SilentMode; ...@@ -111,6 +111,11 @@ extern bool SilentMode;
extern int MaxBackends; extern int MaxBackends;
extern int NBuffers; extern int NBuffers;
extern int PostPortNumber; extern int PostPortNumber;
extern int Unix_socket_permissions;
extern char *Unix_socket_group;
extern char *UnixSocketDir;
extern char *Virtual_host;
/***************************************************************************** /*****************************************************************************
* pdir.h -- * * pdir.h -- *
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment