'S' flag meaning we use ssl link added to /stats {c,C} (connect)

This commit is contained in:
Valery Yatsko 2008-04-08 18:30:53 +04:00
parent 9b2fe0ba77
commit 92b8976366
2 changed files with 2 additions and 3 deletions

View File

@ -35,9 +35,6 @@
*/
#define TRY_CONNECTIONS_TIME 60
/* collect ziplinks compression ratios/etc every minute */
#define ZIPSTATS_TIME 60
/*
* number of seconds to wait after server starts up, before
* starting try_connections()

View File

@ -308,6 +308,8 @@ stats_connect(struct Client *source_p)
{
if(ServerConfAutoconn(server_p))
*s++ = 'A';
if(ServerConfSSL(server_p))
*s++ = 'S';
if(ServerConfTb(server_p))
*s++ = 'T';
if(ServerConfCompressed(server_p))