diff options
author | Karsten Loesing <karsten.loesing@gmx.net> | 2010-08-15 14:58:35 +0200 |
---|---|---|
committer | Karsten Loesing <karsten.loesing@gmx.net> | 2010-12-03 16:47:52 +0100 |
commit | f56529b4b2226f2fde1ff75ee222edccca9d1591 (patch) | |
tree | 70904ebf65aeaa836edff8664f34594d8531ec32 /src/or/router.c | |
parent | 5dfdf075ac0cb3df66443011d3faa2c95dc53629 (diff) | |
download | tor-f56529b4b2226f2fde1ff75ee222edccca9d1591.tar.gz tor-f56529b4b2226f2fde1ff75ee222edccca9d1591.zip |
Call the new config option ConnDirectionStatistics.
Diffstat (limited to 'src/or/router.c')
-rw-r--r-- | src/or/router.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/router.c b/src/or/router.c index b612e9a7fb..8c56bc49a9 100644 --- a/src/or/router.c +++ b/src/or/router.c @@ -2051,7 +2051,7 @@ extrainfo_dump_to_string(char **s_out, extrainfo_t *extrainfo, "exit-stats-end", now, &contents) > 0) { smartlist_add(chunks, contents); } - if (options->ConnStatistics && + if (options->ConnDirectionStatistics && load_stats_file("stats"PATH_SEPARATOR"conn-stats", "conn-stats-end", now, &contents) > 0) { size_t pos = strlen(s); |