summaryrefslogtreecommitdiff
path: root/ot_stats.c
diff options
context:
space:
mode:
authorerdgeist <>2012-05-28 19:05:02 +0000
committererdgeist <>2012-05-28 19:05:02 +0000
commitdc90c8867cd39a42c85ee15d711b84c7206677cf (patch)
treea62737b79841d32b2eb9f441935ccf0334195040 /ot_stats.c
parent37db5f94fadae6993585d447b4faa00cacca49a2 (diff)
Report connection id missmatch count
Diffstat (limited to 'ot_stats.c')
-rw-r--r--ot_stats.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/ot_stats.c b/ot_stats.c
index 5e7a9f3..d37424c 100644
--- a/ot_stats.c
+++ b/ot_stats.c
@@ -48,6 +48,7 @@ static unsigned long long ot_overall_tcp_successfulannounces = 0;
48static unsigned long long ot_overall_udp_successfulannounces = 0; 48static unsigned long long ot_overall_udp_successfulannounces = 0;
49static unsigned long long ot_overall_tcp_successfulscrapes = 0; 49static unsigned long long ot_overall_tcp_successfulscrapes = 0;
50static unsigned long long ot_overall_udp_successfulscrapes = 0; 50static unsigned long long ot_overall_udp_successfulscrapes = 0;
51static unsigned long long ot_overall_udp_connectionidmissmatches = 0;
51static unsigned long long ot_overall_tcp_connects = 0; 52static unsigned long long ot_overall_tcp_connects = 0;
52static unsigned long long ot_overall_udp_connects = 0; 53static unsigned long long ot_overall_udp_connects = 0;
53static unsigned long long ot_overall_completed = 0; 54static unsigned long long ot_overall_completed = 0;
@@ -59,7 +60,6 @@ static char * ot_failed_request_names[] = { "302 Redirect", "400 Par
59static unsigned long long ot_renewed[OT_PEER_TIMEOUT]; 60static unsigned long long ot_renewed[OT_PEER_TIMEOUT];
60static unsigned long long ot_overall_sync_count; 61static unsigned long long ot_overall_sync_count;
61static unsigned long long ot_overall_stall_count; 62static unsigned long long ot_overall_stall_count;
62static unsigned long long g_stats_connid_missmatches;
63 63
64static time_t ot_start_time; 64static time_t ot_start_time;
65 65
@@ -539,7 +539,7 @@ static size_t stats_return_everything( char * reply ) {
539 r += sprintf( r, " <completed>\n <count>%llu</count>\n </completed>\n", ot_overall_completed ); 539 r += sprintf( r, " <completed>\n <count>%llu</count>\n </completed>\n", ot_overall_completed );
540 r += sprintf( r, " <connections>\n" ); 540 r += sprintf( r, " <connections>\n" );
541 r += sprintf( r, " <tcp>\n <accept>%llu</accept>\n <announce>%llu</announce>\n <scrape>%llu</scrape>\n </tcp>\n", ot_overall_tcp_connections, ot_overall_tcp_successfulannounces, ot_overall_udp_successfulscrapes ); 541 r += sprintf( r, " <tcp>\n <accept>%llu</accept>\n <announce>%llu</announce>\n <scrape>%llu</scrape>\n </tcp>\n", ot_overall_tcp_connections, ot_overall_tcp_successfulannounces, ot_overall_udp_successfulscrapes );
542 r += sprintf( r, " <udp>\n <overall>%llu</overall>\n <connect>%llu</connect>\n <announce>%llu</announce>\n <scrape>%llu</scrape>\n </udp>\n", ot_overall_udp_connections, ot_overall_udp_connects, ot_overall_udp_successfulannounces, ot_overall_udp_successfulscrapes ); 542 r += sprintf( r, " <udp>\n <overall>%llu</overall>\n <connect>%llu</connect>\n <announce>%llu</announce>\n <scrape>%llu</scrape>\n <missmatch>%llu</missmatch>\n </udp>\n", ot_overall_udp_connections, ot_overall_udp_connects, ot_overall_udp_successfulannounces, ot_overall_udp_successfulscrapes, ot_overall_udp_connectionidmissmatches );
543 r += sprintf( r, " <livesync>\n <count>%llu</count>\n </livesync>\n", ot_overall_sync_count ); 543 r += sprintf( r, " <livesync>\n <count>%llu</count>\n </livesync>\n", ot_overall_sync_count );
544 r += sprintf( r, " </connections>\n" ); 544 r += sprintf( r, " </connections>\n" );
545 r += sprintf( r, " <debug>\n" ); 545 r += sprintf( r, " <debug>\n" );
@@ -725,7 +725,7 @@ void stats_issue_event( ot_status_event event, PROTO_FLAG proto, uintptr_t event
725 break; 725 break;
726#endif 726#endif
727 case EVENT_CONNID_MISSMATCH: 727 case EVENT_CONNID_MISSMATCH:
728 ++g_stats_connid_missmatches; 728 ++ot_overall_udp_connectionidmissmatches;
729 default: 729 default:
730 break; 730 break;
731 } 731 }