]> git.ipfire.org Git - thirdparty/opentracker.git/commitdiff
Use mrtg to do periodical cleanup. Hopefully that wont make too much load for stats.
authorerdgeist <>
Tue, 16 Jan 2007 03:44:13 +0000 (03:44 +0000)
committererdgeist <>
Tue, 16 Jan 2007 03:44:13 +0000 (03:44 +0000)
testsuite.sh
trackerlogic.c

index 6baeabbdc03a98af9437301a1a90a075003e1311..e0981d102df2bc59105afa3031a4f6a0945cfd30 100644 (file)
@@ -1,12 +1,12 @@
 #!/bin/sh
 
 while true; do
-  request_string="GET /announce?info_hash=0123456789012345678%$(printf %02X $(( $RANDOM & 0xff )) )&\
+  request_string="GET /announce?info_hash=0123456789012345678%$(printf %02X $(( $RANDOM & 0xf )) )&\
 ip=10.1.1.$(( $RANDOM & 0xff ))&port=$(( $RANDOM & 0xff )) HTTP/1.0\n"
 
 #  echo -e $request_string
 #  echo
-  echo -e $request_string | nc 127.0.0.1 6969 >/dev/null &
+  echo -e $request_string | nc 127.0.0.1 6969 >/dev/null
 #  echo
 
 done
index 0c78e160836e94df281cb5b8d72107302743b4db..7d5c16b2043db0f90de40a895ce7acd2ec81a3ae 100644 (file)
@@ -321,6 +321,7 @@ size_t return_stats_for_tracker( char *reply ) {
     torrent_count += torrents_list->size;
     for( j=0; j<torrents_list->size; ++j ) {
       ot_peerlist *peer_list = (  ((ot_torrent*)(torrents_list->data))[j] ).peer_list;
+      clean_peerlist( peer_list );
       for( k=0; k<OT_POOLS_COUNT; ++k ) {
         peer_count += peer_list->peers[k].size;
         seed_count += peer_list->seed_count[k];