mirror of
				git://erdgeist.org/opentracker
				synced 2025-11-04 11:53:22 +08:00 
			
		
		
		
	fixed the last commit. now it really counts the scrapes and fullscrapes
This commit is contained in:
		
							parent
							
								
									929d375b97
								
							
						
					
					
						commit
						222519fdff
					
				@ -255,8 +255,6 @@ static void httpresponse( const int64 s, char *data ) {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
    /* Enough for http header + whole scrape string */
 | 
					    /* Enough for http header + whole scrape string */
 | 
				
			||||||
    if( !( reply_size = return_stats_for_tracker( SUCCESS_HTTP_HEADER_LENGTH + static_outbuf, mode ) ) ) HTTPERROR_500;
 | 
					    if( !( reply_size = return_stats_for_tracker( SUCCESS_HTTP_HEADER_LENGTH + static_outbuf, mode ) ) ) HTTPERROR_500;
 | 
				
			||||||
 | 
					 | 
				
			||||||
    ot_overall_successfulannounces++;
 | 
					 | 
				
			||||||
    break;
 | 
					    break;
 | 
				
			||||||
  case 6: /* scrape ? */
 | 
					  case 6: /* scrape ? */
 | 
				
			||||||
    if( byte_diff( data, 6, "scrape") ) HTTPERROR_404;
 | 
					    if( byte_diff( data, 6, "scrape") ) HTTPERROR_404;
 | 
				
			||||||
@ -284,11 +282,14 @@ SCRAPE_WORKAROUND:
 | 
				
			|||||||
    /* Scanned whole query string, no hash means full scrape... you might want to limit that */
 | 
					    /* Scanned whole query string, no hash means full scrape... you might want to limit that */
 | 
				
			||||||
    if( !hash ) {
 | 
					    if( !hash ) {
 | 
				
			||||||
      if( !( reply_size = return_fullscrape_for_tracker( &reply ) ) ) HTTPERROR_500;
 | 
					      if( !( reply_size = return_fullscrape_for_tracker( &reply ) ) ) HTTPERROR_500;
 | 
				
			||||||
 | 
					      ot_overall_successfulannounces++;
 | 
				
			||||||
      return sendmallocdata( s, reply, reply_size );
 | 
					      return sendmallocdata( s, reply, reply_size );
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    /* Enough for http header + whole scrape string */
 | 
					    /* Enough for http header + whole scrape string */
 | 
				
			||||||
    if( !( reply_size = return_scrape_for_torrent( hash, SUCCESS_HTTP_HEADER_LENGTH + static_outbuf ) ) ) HTTPERROR_500;
 | 
					    if( !( reply_size = return_scrape_for_torrent( hash, SUCCESS_HTTP_HEADER_LENGTH + static_outbuf ) ) ) HTTPERROR_500;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    ot_overall_successfulannounces++;
 | 
				
			||||||
    break;
 | 
					    break;
 | 
				
			||||||
  case 8:
 | 
					  case 8:
 | 
				
			||||||
    if( byte_diff( data, 8, "announce" ) ) HTTPERROR_404;
 | 
					    if( byte_diff( data, 8, "announce" ) ) HTTPERROR_404;
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user