[2] | 1 | |
---|
| 2 | |
---|
| 3 | |
---|
[28] | 4 | |
---|
[2] | 5 | |
---|
[28] | 6 | |
---|
[2] | 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 | |
---|
[31] | 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" |
---|
[2] | 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 | |
---|
[31] | 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; |
---|
[36] | 69 | struct POP *matrixPOP; |
---|
| 70 | unsigned long long nbFluxSR4; |
---|
| 71 | unsigned long long nbFluxSE; |
---|
| 72 | unsigned long long nbFluxIR4; |
---|
| 73 | unsigned long long nbFluxUK; |
---|
| 74 | unsigned long long nbFluxTT; |
---|
[31] | 75 | }; |
---|
| 76 | |
---|
[2] | 77 | RouterPtr notExistRouter(RouterPtr, unsigned long); |
---|
[31] | 78 | RouterPtr addRouter(RouterPtr, unsigned long, unsigned long, struct PrefixV4 *, size_t, struct MyPtrs *); |
---|
[2] | 79 | TplFlowSetPtr newRouterTplList(); |
---|
| 80 | TplFlowSetPtr deleteTplFlSet(TplFlowSetPtr); |
---|
| 81 | TplOptionPtr newRouterTplOptList(); |
---|
| 82 | TplOptionPtr deleteTplOption(TplOptionPtr); |
---|
| 83 | |
---|
| 84 | |
---|
[31] | 85 | |
---|
[2] | 86 | |
---|
| 87 | #endif |
---|