2007-11-12 01:38:08 +00:00
|
|
|
/* This software was written by Dirk Engling <erdgeist@erdgeist.org>
|
2007-12-20 05:59:34 +00:00
|
|
|
It is considered beerware. Prost. Skol. Cheers or whatever.
|
2008-10-28 01:27:22 +00:00
|
|
|
|
2007-12-20 05:59:34 +00:00
|
|
|
$id$ */
|
2007-11-12 01:38:08 +00:00
|
|
|
|
2017-04-28 15:41:24 +02:00
|
|
|
#ifndef OT_FULLSCRAPE_H__
|
|
|
|
#define OT_FULLSCRAPE_H__
|
2007-11-12 01:38:08 +00:00
|
|
|
|
2008-10-04 05:40:51 +00:00
|
|
|
#ifdef WANT_FULLSCRAPE
|
|
|
|
|
2024-04-15 00:39:02 +02:00
|
|
|
#include "ot_mutex.h"
|
|
|
|
|
|
|
|
void fullscrape_init();
|
|
|
|
void fullscrape_deinit();
|
|
|
|
void fullscrape_deliver(int64 sock, ot_tasktype tasktype);
|
2007-11-12 01:38:08 +00:00
|
|
|
|
2008-10-04 05:40:51 +00:00
|
|
|
#else
|
|
|
|
|
|
|
|
#define fullscrape_init()
|
|
|
|
#define fullscrape_deinit()
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2007-11-12 01:45:33 +00:00
|
|
|
#endif
|