forked from appneta/tcpreplay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tree.h
66 lines (56 loc) · 2.32 KB
/
tree.h
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
/* $Id$ */
/*
* Copyright (c) 2001-2010 Aaron Turner <aturner at synfin dot net>
* Copyright (c) 2013-2017 Fred Klassen <tcpreplay at appneta dot com> - AppNeta
*
* The Tcpreplay Suite of tools is free software: you can redistribute it
* and/or modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or with the authors permission any later version.
*
* The Tcpreplay Suite 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with the Tcpreplay Suite. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef __TREE_H__
#define __TREE_H__
#include "lib/tree.h"
#define TREEPRINTBUFFLEN 2048
typedef struct tcpr_tree_s {
RB_ENTRY(tcpr_tree_s) node;
int family;
union {
unsigned long ip; /* ip/network address in network byte order */
struct tcpr_in6_addr ip6;
} u;
u_char mac[ETHER_ADDR_LEN]; /* mac address of system */
int masklen; /* CIDR network mask length */
int server_cnt; /* count # of times this entry was flagged server */
int client_cnt; /* flagged client */
int type; /* 1 = server, 0 = client, -1 = undefined */
} tcpr_tree_t;
/*
* replacement for RB_HEAD() which doesn't actually declare the root
*/
typedef struct tcpr_data_tree_s {
tcpr_tree_t *rbh_root;
} tcpr_data_tree_t;
typedef struct tcpr_buildcidr_s {
int type; /* SERVER|CLIENT|UNKNOWN|ANY */
int masklen; /* mask size to use to build the CIDR */
} tcpr_buildcidr_t;
#define DNS_QUERY_FLAG 0x8000
void add_tree_ipv4(const unsigned long, const u_char *);
void add_tree_ipv6(const struct tcpr_in6_addr *, const u_char *);
void add_tree_first_ipv4(const u_char *);
void add_tree_first_ipv6(const u_char *);
tcpr_dir_t check_ip_tree(const int, const unsigned long);
tcpr_dir_t check_ip6_tree(const int, const struct tcpr_in6_addr *);
int process_tree();
void tree_calculate(tcpr_data_tree_t *);
int tree_comp(tcpr_tree_t *, tcpr_tree_t *);
#endif