mirror of
https://github.com/pi-hole/FTL.git
synced 2024-10-26 16:52:18 +02:00
3b404ff9a0
Signed-off-by: DL6ER <dl6er@dl6er.de>
18 lines
540 B
C
18 lines
540 B
C
/* Pi-hole: A black hole for Internet advertisements
|
|
* (c) 2019 Pi-hole, LLC (https://pi-hole.net)
|
|
* Network-wide ad blocking via your own hardware.
|
|
*
|
|
* FTL Engine
|
|
* Garbage collection prototypes
|
|
*
|
|
* This file is copyright under the latest version of the EUPL.
|
|
* Please see LICENSE file for your rights under this license. */
|
|
#ifndef GC_H
|
|
#define GC_H
|
|
|
|
void *GC_thread(void *val);
|
|
void runGC(const time_t now, time_t *lastGCrun, const bool flush);
|
|
time_t get_rate_limit_turnaround(const unsigned int rate_limit_count);
|
|
|
|
#endif //GC_H
|