summaryrefslogtreecommitdiff
path: root/ot_fullscrape.h
blob: bbb2a3fe3278689185563144351a00afa29db070 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/* 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

#include "ot_mutex.h"

void fullscrape_init();
void fullscrape_deinit();
void fullscrape_deliver(int64 sock, ot_tasktype tasktype);

#else

#define fullscrape_init()
#define fullscrape_deinit()

#endif

#endif