aboutsummaryrefslogtreecommitdiffstats
path: root/src/fnettrace/radix.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/fnettrace/radix.h')
-rw-r--r--src/fnettrace/radix.h37
1 files changed, 37 insertions, 0 deletions
diff --git a/src/fnettrace/radix.h b/src/fnettrace/radix.h
new file mode 100644
index 000000000..418e57413
--- /dev/null
+++ b/src/fnettrace/radix.h
@@ -0,0 +1,37 @@
1/*
2 * Copyright (C) 2014-2021 Firejail Authors
3 *
4 * This file is part of firejail project
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19*/
20#ifndef RADIX_H
21#define RADIX_H
22
23typedef struct rnode_t {
24 struct rnode_t *zero;
25 struct rnode_t *one;
26 uint32_t ip;
27 uint32_t mask;
28 char *name;
29} RNode;
30
31char *radix_find_first(uint32_t ip);
32char *radix_find_last(uint32_t ip);
33void radix_add(uint32_t ip, uint32_t mask, char *name);
34void radix_print(void);
35void radix_build_list(void);
36
37#endif \ No newline at end of file