summaryrefslogtreecommitdiff
path: root/src/include/postmaster
diff options
context:
space:
mode:
authorBruce Momjian2007-02-16 02:59:41 +0000
committerBruce Momjian2007-02-16 02:59:41 +0000
commitc7b08050d9a2b68b27045b36ff4c9a3db85a55e4 (patch)
tree781f8fdd28b7204aa6dcd95023ffb6368aaf492f /src/include/postmaster
parent68046a20c7e8a575c498648317217ad3b70be0da (diff)
SSL improvements:
o read global SSL configuration file o add GUC "ssl_ciphers" to control allowed ciphers o add libpq environment variable PGSSLKEY to control SSL hardware keys Victor B. Wagner
Diffstat (limited to 'src/include/postmaster')
-rw-r--r--src/include/postmaster/postmaster.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/postmaster/postmaster.h b/src/include/postmaster/postmaster.h
index 26818c17344..811e65af55b 100644
--- a/src/include/postmaster/postmaster.h
+++ b/src/include/postmaster/postmaster.h
@@ -6,7 +6,7 @@
* Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $PostgreSQL: pgsql/src/include/postmaster/postmaster.h,v 1.15 2007/01/05 22:19:57 momjian Exp $
+ * $PostgreSQL: pgsql/src/include/postmaster/postmaster.h,v 1.16 2007/02/16 02:59:41 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -15,6 +15,7 @@
/* GUC options */
extern bool EnableSSL;
+extern char *SSLCipherSuites;
extern bool SilentMode;
extern int ReservedBackends;
extern int PostPortNumber;