@ -10,7 +10,7 @@
* Written by Peter Eisentraut < peter_e @ gmx . net > .
*
* IDENTIFICATION
* $ PostgreSQL : pgsql / src / backend / utils / misc / guc . c , v 1.505 .2 .4 2010 / 01 / 24 21 : 49 : 31 tgl Exp $
* $ PostgreSQL : pgsql / src / backend / utils / misc / guc . c , v 1.505 .2 .5 2010 / 02 / 25 13 : 26 : 26 mha Exp $
*
* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
*/
@ -114,6 +114,7 @@ extern char *default_tablespace;
extern char * temp_tablespaces ;
extern bool synchronize_seqscans ;
extern bool fullPageWrites ;
extern int ssl_renegotiation_limit ;
# ifdef TRACE_SORT
extern bool trace_sort ;
@ -1889,6 +1890,16 @@ static struct config_int ConfigureNamesInt[] =
0 , 0 , INT_MAX , assign_tcp_keepalives_interval , show_tcp_keepalives_interval
} ,
{
{ " ssl_renegotiation_limit " , PGC_USERSET , CONN_AUTH_SECURITY ,
gettext_noop ( " Set the amount of traffic to send and receive before renegotiating the encryption keys. " ) ,
NULL ,
GUC_UNIT_KB ,
} ,
& ssl_renegotiation_limit ,
512 * 1024 , 0 , MAX_KILOBYTES , NULL , NULL
} ,
{
{ " tcp_keepalives_count " , PGC_USERSET , CLIENT_CONN_OTHER ,
gettext_noop ( " Maximum number of TCP keepalive retransmits. " ) ,