diff options
author | Roger Dingledine <arma@torproject.org> | 2008-12-27 06:50:07 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2008-12-27 06:50:07 +0000 |
commit | 5519e633ec4c48c5e547554ff750db1aab835cc7 (patch) | |
tree | 90b8cd8079bf9c4d1f0c25bd5e3c1365b07ec2f0 /src/or/router.c | |
parent | 0c5e03fa21ecdc5f484b8cef18fcbb611349b47f (diff) | |
download | tor-5519e633ec4c48c5e547554ff750db1aab835cc7.tar.gz tor-5519e633ec4c48c5e547554ff750db1aab835cc7.zip |
New controller event "clients_seen" to report a geoip-based summary
of which countries we've seen clients from recently. Now controllers
like Vidalia can show bridge operators that they're actually making
a difference.
svn:r17796
Diffstat (limited to 'src/or/router.c')
-rw-r--r-- | src/or/router.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/or/router.c b/src/or/router.c index a3cb7c49e0..55618c4eb1 100644 --- a/src/or/router.c +++ b/src/or/router.c @@ -1878,6 +1878,7 @@ extrainfo_dump_to_string(char *s, size_t maxlen, extrainfo_t *extrainfo, "geoip-start-time %s\n" "geoip-client-origins %s\n", geoip_start, geoip_summary); + control_event_clients_seen(geoip_start, geoip_summary); tor_free(geoip_summary); if (result<0) return -1; |