mirror of
git://erdgeist.org/opentracker
synced 2025-02-22 09:01:29 +08:00
fix the stats a little for not accepting udp scrapes
This commit is contained in:
parent
45d34960b0
commit
36413e4853
@ -595,7 +595,7 @@ static void handle_udp4( int64 serversocket ) {
|
||||
r = socket_recv4( serversocket, static_inbuf, 8192, remoteip, &remoteport);
|
||||
|
||||
ot_overall_udp_connections++;
|
||||
|
||||
|
||||
/* Minimum udp tracker packet size, also catches error */
|
||||
if( r < 16 )
|
||||
return;
|
||||
@ -654,6 +654,10 @@ static void handle_udp4( int64 serversocket ) {
|
||||
ot_overall_udp_successfulannounces++;
|
||||
}
|
||||
break;
|
||||
|
||||
case 2: /* This is a scrape action */
|
||||
ot_overall_udp_connections--; // subtract again because we don't answer scrapes but it is also not an error
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user