• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/transmission/transmission-2.73/libtransmission/
1/*
2 * This file Copyright (C) Mnemosyne LLC
3 *
4 * This file is licensed by the GPL version 2. Works owned by the
5 * Transmission project are granted a special exemption to clause 2(b)
6 * so that the bulk of its code can remain under the MIT license.
7 * This exemption does not extend to derived works not owned by
8 * the Transmission project.
9 *
10 * $Id: blocklist.h 12229 2011-03-25 05:34:26Z jordan $
11 */
12
13#ifndef __TRANSMISSION__
14#error only libtransmission should #include this header.
15#endif
16
17#ifndef TR_BLOCKLIST_H
18#define TR_BLOCKLIST_H
19
20struct tr_address;
21typedef struct tr_blocklist tr_blocklist;
22
23tr_blocklist* _tr_blocklistNew         ( const char              * filename,
24                                         bool                   isEnabled );
25
26int           _tr_blocklistExists      ( const tr_blocklist      * b );
27
28const char*   _tr_blocklistGetFilename ( const tr_blocklist      * b );
29
30int           _tr_blocklistGetRuleCount( const tr_blocklist      * b );
31
32void          _tr_blocklistFree        ( tr_blocklist * );
33
34int           _tr_blocklistIsEnabled   ( tr_blocklist            * b );
35
36void          _tr_blocklistSetEnabled  ( tr_blocklist            * b,
37                                         bool                      isEnabled );
38
39int           _tr_blocklistHasAddress  ( tr_blocklist            * b,
40                                         const struct tr_address * addr );
41
42int           _tr_blocklistSetContent  ( tr_blocklist            * b,
43                                         const char              * filename );
44
45#endif
46