2008-03-29 18:37:07 +00:00
|
|
|
/*
|
|
|
|
* This file Copyright (C) 2008 Charles Kerr <charles@rebelbase.com>
|
|
|
|
*
|
|
|
|
* This file is licensed by the GPL version 2. Works owned by the
|
|
|
|
* Transmission project are granted a special exemption to clause 2(b)
|
2008-09-23 19:11:04 +00:00
|
|
|
* so that the bulk of its code can remain under the MIT license.
|
2008-03-29 18:37:07 +00:00
|
|
|
* This exemption does not extend to derived works not owned by
|
|
|
|
* the Transmission project.
|
|
|
|
*
|
2008-05-28 17:17:12 +00:00
|
|
|
* $Id$
|
2008-03-29 18:37:07 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef TR_BLOCKLIST_H
|
|
|
|
#define TR_BLOCKLIST_H
|
|
|
|
|
|
|
|
struct in_addr;
|
2008-04-01 19:20:21 +00:00
|
|
|
typedef struct tr_blocklist tr_blocklist;
|
2008-03-29 18:37:07 +00:00
|
|
|
|
2008-09-23 19:11:04 +00:00
|
|
|
tr_blocklist* _tr_blocklistNew( const char * filename,
|
2008-10-23 02:37:21 +00:00
|
|
|
int isEnabled );
|
2008-09-23 19:11:04 +00:00
|
|
|
|
2008-10-23 02:37:21 +00:00
|
|
|
int _tr_blocklistExists( const tr_blocklist * );
|
2008-09-23 19:11:04 +00:00
|
|
|
|
2008-10-23 02:37:21 +00:00
|
|
|
const char* _tr_blocklistGetFilename( const tr_blocklist * );
|
2008-09-23 19:11:04 +00:00
|
|
|
|
2008-10-23 02:37:21 +00:00
|
|
|
int _tr_blocklistGetRuleCount( const tr_blocklist * );
|
2008-09-23 19:11:04 +00:00
|
|
|
|
2008-10-23 02:37:21 +00:00
|
|
|
void _tr_blocklistFree( tr_blocklist * );
|
2008-09-23 19:11:04 +00:00
|
|
|
|
2008-10-23 02:37:21 +00:00
|
|
|
int _tr_blocklistIsEnabled( tr_blocklist * );
|
2008-09-23 19:11:04 +00:00
|
|
|
|
2008-10-23 02:37:21 +00:00
|
|
|
void _tr_blocklistSetEnabled( tr_blocklist *,
|
|
|
|
int isEnabled );
|
2008-09-23 19:11:04 +00:00
|
|
|
|
2008-10-23 02:37:21 +00:00
|
|
|
int _tr_blocklistHasAddress(
|
|
|
|
tr_blocklist *,
|
|
|
|
const struct
|
|
|
|
in_addr * addr );
|
2008-09-23 19:11:04 +00:00
|
|
|
|
2008-10-23 02:37:21 +00:00
|
|
|
int _tr_blocklistSetContent(
|
|
|
|
tr_blocklist *,
|
|
|
|
const char * filename );
|
2008-03-29 18:37:07 +00:00
|
|
|
|
|
|
|
#endif
|