summaryrefslogtreecommitdiff
path: root/src/include/utils
diff options
context:
space:
mode:
authorBruce Momjian2005-07-30 15:17:26 +0000
committerBruce Momjian2005-07-30 15:17:26 +0000
commit1f54d43075d8c457935cd9fe8adfea949104995d (patch)
tree1dae9895c68da69a255b08d5e5f349ea8cdc0a3f /src/include/utils
parentb2b6548c79eb63faf1d0939893b3bf183d5410a1 (diff)
Add GUC variables to control keep-alive times for idle, interval, and
count. Oliver Jowett
Diffstat (limited to 'src/include/utils')
-rw-r--r--src/include/utils/guc.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/include/utils/guc.h b/src/include/utils/guc.h
index c08ecd4db42..00399bd488c 100644
--- a/src/include/utils/guc.h
+++ b/src/include/utils/guc.h
@@ -7,7 +7,7 @@
* Copyright (c) 2000-2005, PostgreSQL Global Development Group
* Written by Peter Eisentraut <peter_e@gmx.net>.
*
- * $PostgreSQL: pgsql/src/include/utils/guc.h,v 1.61 2005/06/26 03:04:12 momjian Exp $
+ * $PostgreSQL: pgsql/src/include/utils/guc.h,v 1.62 2005/07/30 15:17:26 momjian Exp $
*--------------------------------------------------------------------
*/
#ifndef GUC_H
@@ -134,6 +134,9 @@ extern char *HbaFileName;
extern char *IdentFileName;
extern char *external_pid_file;
+extern int tcp_keepalives_idle;
+extern int tcp_keepalives_interval;
+extern int tcp_keepalives_count;
extern void SetConfigOption(const char *name, const char *value,
GucContext context, GucSource source);