Revision 31, 2.3 KB
(checked in by andreu, 16 years ago)
|
now, only subnets rrd files from routers who are seeing will be created - new scripts in tool
|
-
Property svn:eol-style set to
native
|
Line | |
---|
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 | #ifndef ROUTERS_MGMT_H |
---|
26 | #define ROUTERS_MGMT_H |
---|
27 | |
---|
28 | #include <unistd.h> |
---|
29 | #include <stdio.h> |
---|
30 | #include <string.h> |
---|
31 | #include <stdlib.h> |
---|
32 | #include <errno.h> |
---|
33 | #include <sys/ioctl.h> |
---|
34 | |
---|
35 | #include "tplflset_mgmt.h" |
---|
36 | #include "get_conf.h" |
---|
37 | #include "prefix_mgmt.h" |
---|
38 | #include "V9Header_mgmt.h" |
---|
39 | #include "headers_mgmt.h" |
---|
40 | #include "rules_mgmt.h" |
---|
41 | |
---|
42 | typedef struct Router * RouterPtr; |
---|
43 | typedef struct Router { |
---|
44 | unsigned long IpAddress; |
---|
45 | TplFlowSetPtr tplList; |
---|
46 | TplOptionPtr tplOptList; |
---|
47 | unsigned long sampled; |
---|
48 | RouterPtr next; |
---|
49 | RouterPtr prev; |
---|
50 | } RouterType; |
---|
51 | |
---|
52 | struct MyPtrs { |
---|
53 | RouterPtr currentRouterPtr; |
---|
54 | NetFlowV9HeaderPtr currentHeaderV9Ptr; |
---|
55 | unsigned short *offsetV9Ptr; |
---|
56 | unsigned char *ptr_buffer; |
---|
57 | short *currentFlowsetNumberPtr; |
---|
58 | short *currentFlowsetIdPtr; |
---|
59 | DatagramPtr pcktPtr; |
---|
60 | RuleDefPtr *rulesAddressPtr; |
---|
61 | RulesPtr rulesListPtr; |
---|
62 | struct IPFLowCache *tabIPPtr; |
---|
63 | struct MPLSFlowCache *tabMPLSPtr; |
---|
64 | unsigned long *ipNbPtr; |
---|
65 | unsigned long *mplsNbPtr; |
---|
66 | unsigned long *routersID; |
---|
67 | struct PrefixV4 *currentV4Tab; |
---|
68 | struct PrefixV4 *secondV4Tab; |
---|
69 | }; |
---|
70 | |
---|
71 | RouterPtr notExistRouter(RouterPtr, unsigned long); |
---|
72 | RouterPtr addRouter(RouterPtr, unsigned long, unsigned long, struct PrefixV4 *, size_t, struct MyPtrs *); |
---|
73 | TplFlowSetPtr newRouterTplList(); |
---|
74 | TplFlowSetPtr deleteTplFlSet(TplFlowSetPtr); |
---|
75 | TplOptionPtr newRouterTplOptList(); |
---|
76 | TplOptionPtr deleteTplOption(TplOptionPtr); |
---|
77 | |
---|
78 | |
---|
79 | |
---|
80 | |
---|
81 | #endif |
---|