This file is indexed.

/usr/include/libroutermanager/filter.h is in libroutermanager-dev 1.8.9-5build2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
/**
 * The libroutermanager project
 * Copyright (c) 2012-2014 Jan-Michael Brummer
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 */

#ifndef LIBROUTERMANAGER_FILTER_H
#define LIBROUTERMANAGER_FILTER_H

#include <libroutermanager/call.h>

G_BEGIN_DECLS

enum {
	FILTER_IS = 0,
	FILTER_IS_NOT,
	FILTER_STARTS_WITH,
	FILTER_CONTAINS
};

enum {
	FILTER_CALL_TYPE = 0,
	FILTER_DATE_TIME,
	FILTER_REMOTE_NAME,
	FILTER_REMOTE_NUMBER,
	FILTER_LOCAL_NAME,
	FILTER_LOCAL_NUMBER
};

enum {
	FILTER_CALL_ALL = 0,
	FILTER_CALL_INCOMING,
	FILTER_CALL_MISSED,
	FILTER_CALL_OUTGOING,
	FILTER_CALL_VOICE,
	FILTER_CALL_FAX,
};

struct filter_rule {
	gint type;
	gint sub_type;
	gchar *entry;
};

struct filter {
	gchar *name;
	gchar *file;
	gboolean compare_or;
	GSList *rules;
};

gboolean filter_rule_match(struct filter *filter, struct call *call);
void filter_rule_add(struct filter *filter, gint type, gint sub_type, gchar *entry);
struct filter *filter_new(const gchar *name);
void filter_free(gpointer data);
GSList *filter_get_list(void);
void filter_init(void);
void filter_shutdown(void);
void filter_add(struct filter *filter);
void filter_remove(struct filter *filter);
void filter_save(void);

G_END_DECLS

#endif