2008-03-29 18:37:07 +00:00
|
|
|
/*
|
2010-01-04 21:00:47 +00:00
|
|
|
* This file Copyright (C) 2008-2010 Mnemosyne LLC
|
2008-03-29 18:37:07 +00:00
|
|
|
*
|
|
|
|
* 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
|
|
|
*/
|
|
|
|
|
2008-11-24 20:17:36 +00:00
|
|
|
#ifndef __TRANSMISSION__
|
|
|
|
#error only libtransmission should #include this header.
|
|
|
|
#endif
|
|
|
|
|
2008-03-29 18:37:07 +00:00
|
|
|
#ifndef TR_BLOCKLIST_H
|
|
|
|
#define TR_BLOCKLIST_H
|
|
|
|
|
2008-12-02 03:41:58 +00:00
|
|
|
struct tr_address;
|
2008-04-01 19:20:21 +00:00
|
|
|
typedef struct tr_blocklist tr_blocklist;
|
2008-03-29 18:37:07 +00:00
|
|
|
|
2008-12-02 03:41:58 +00:00
|
|
|
tr_blocklist* _tr_blocklistNew ( const char * filename,
|
2010-07-01 15:14:35 +00:00
|
|
|
tr_bool isEnabled );
|
2008-09-23 19:11:04 +00:00
|
|
|
|
2008-12-02 03:41:58 +00:00
|
|
|
int _tr_blocklistExists ( const tr_blocklist * b );
|
2008-09-23 19:11:04 +00:00
|
|
|
|
2008-12-02 03:41:58 +00:00
|
|
|
const char* _tr_blocklistGetFilename ( const tr_blocklist * b );
|
2008-09-23 19:11:04 +00:00
|
|
|
|
2008-12-02 03:41:58 +00:00
|
|
|
int _tr_blocklistGetRuleCount( const tr_blocklist * b );
|
2008-09-23 19:11:04 +00:00
|
|
|
|
2008-12-02 03:41:58 +00:00
|
|
|
void _tr_blocklistFree ( tr_blocklist * );
|
2008-09-23 19:11:04 +00:00
|
|
|
|
2008-12-02 03:41:58 +00:00
|
|
|
int _tr_blocklistIsEnabled ( tr_blocklist * b );
|
2008-09-23 19:11:04 +00:00
|
|
|
|
2008-12-02 03:41:58 +00:00
|
|
|
void _tr_blocklistSetEnabled ( tr_blocklist * b,
|
|
|
|
int isEnabled );
|
2008-09-23 19:11:04 +00:00
|
|
|
|
2008-12-02 03:41:58 +00:00
|
|
|
int _tr_blocklistHasAddress ( tr_blocklist * b,
|
|
|
|
const struct tr_address * addr );
|
2008-09-23 19:11:04 +00:00
|
|
|
|
2008-12-02 03:41:58 +00:00
|
|
|
int _tr_blocklistSetContent ( tr_blocklist * b,
|
|
|
|
const char * filename );
|
2008-03-29 18:37:07 +00:00
|
|
|
|
|
|
|
#endif
|