-
Notifications
You must be signed in to change notification settings - Fork 1
/
C_Filterlist.hpp
62 lines (44 loc) · 1.41 KB
/
C_Filterlist.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
//////////////////////////////////////////////////////////////////////////////////
// [ Filterlist_Class_Header ]
//////////////////////////////////////////////////////////////////////////////////
//
//
// Last modi: 19.08.17 L.ey (µ~)
//
//
//
#ifndef _C_FILTERLIST_H_
#define _C_FILTERLIST_H_
#include <stdio.h>
#include <fstream>
#include <iostream>
#include <sstream>
#include <string>
using namespace std;
#include "C_DArray.hpp"
//////////////////////////////////////////////////////////////////////////////////
// CONSTANT
//////////////////////////////////////////////////////////////////////////////////
const int C_FLIST_READY = 0x01;
const int C_FLIST_ERROR = 0x00;
const int C_FLIST_MAX_DNS = 0xFF;
//////////////////////////////////////////////////////////////////////////////////
// CLASS
//////////////////////////////////////////////////////////////////////////////////
class C_Filterlist{
public:
C_Filterlist(){};
~C_Filterlist(){};
//////////////////////////////////
int init(const char* pFile);
int read();
int add(const char* pSite);
int del(const char* pSite);
////////////////////////////////
C_DArray<char> CDA_FilterList;
protected:
string sFilterlist;
fstream fFilterlist;
bool bFilterlist;
};
#endif // _C_FILTERLIST_H_