mirror of
git://erdgeist.org/opentracker
synced 2025-01-14 00:40:09 +00:00
e534db03c6
added a config file parser added tracker id changed WANT_CLOSED_TRACKER and WANT_BLACKLIST into WANT_ACCESS_WHITE and WANT_ACCESS_BLACK changed WANT_TRACKER_SYNC to WANT_SYNC_BATCH and added WANT_SYNC_LIVE added an option to switch off fullscrapes cleaned up many internal hardcoded values, like PROTO_FLAG,
23 lines
422 B
C
23 lines
422 B
C
/* This software was written by Dirk Engling <erdgeist@erdgeist.org>
|
|
It is considered beerware. Prost. Skol. Cheers or whatever.
|
|
|
|
$id$ */
|
|
|
|
#ifndef __OT_FULLSCRAPE_H__
|
|
#define __OT_FULLSCRAPE_H__
|
|
|
|
#ifdef WANT_FULLSCRAPE
|
|
|
|
void fullscrape_init( );
|
|
void fullscrape_deinit( );
|
|
void fullscrape_deliver( int64 socket, ot_tasktype tasktype );
|
|
|
|
#else
|
|
|
|
#define fullscrape_init()
|
|
#define fullscrape_deinit()
|
|
|
|
#endif
|
|
|
|
#endif
|