mirror of git://erdgeist.org/opentracker
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
664 B
23 lines
664 B
17 years ago
|
/* This software was written by Dirk Engling <erdgeist@erdgeist.org>
|
||
|
It is considered beerware. Prost. Skol. Cheers or whatever. */
|
||
|
|
||
|
#ifndef __OT_ACCESSLIST_H__
|
||
|
#define __OT_ACCESSLIST_H__
|
||
|
|
||
|
#include "trackerlogic.h"
|
||
|
|
||
|
#if defined ( WANT_BLACKLISTING ) && defined (WANT_CLOSED_TRACKER )
|
||
|
#error WANT_BLACKLISTING and WANT_CLOSED_TRACKER are exclusive.
|
||
|
#endif
|
||
|
|
||
|
#if defined ( WANT_BLACKLISTING ) || defined (WANT_CLOSED_TRACKER )
|
||
|
#define WANT_ACCESS_CONTROL
|
||
|
void accesslist_init( char *accesslist_filename );
|
||
|
int accesslist_hashisvalid( ot_hash *hash );
|
||
|
#else
|
||
|
#define accesslist_init( accesslist_filename )
|
||
|
#define accesslist_hashisvalid( hash ) 1
|
||
|
#endif
|
||
|
|
||
|
#endif
|