Revision 115, 2.0 KB
(checked in by andreu, 14 years ago)
|
ticket#27 continuation
|
-
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 | |
---|
26 | #define _GNU_SOURCE |
---|
27 | |
---|
28 | #include <unistd.h> |
---|
29 | #include <stdio.h> |
---|
30 | #include <string.h> |
---|
31 | #include <stdlib.h> |
---|
32 | #include <syslog.h> |
---|
33 | #include <sys/types.h> |
---|
34 | #include <time.h> |
---|
35 | #include <errno.h> |
---|
36 | #include <sys/ipc.h> |
---|
37 | #include <sys/shm.h> |
---|
38 | #include <sys/sem.h> |
---|
39 | |
---|
40 | #include "rrd.h" |
---|
41 | #include "dataFlowSet.h" |
---|
42 | #include "pop.h" |
---|
43 | #include "renetcolParam.h" |
---|
44 | #include "as.h" |
---|
45 | #include "renetcol_mib.h" |
---|
46 | |
---|
47 | struct SHMForAgg { |
---|
48 | unsigned short currentTable; |
---|
49 | unsigned short secondTable; |
---|
50 | unsigned short readed; |
---|
51 | unsigned short v4PrefixNb; |
---|
52 | unsigned short v4SubnetNb; |
---|
53 | unsigned short v6PrefixNb; |
---|
54 | #ifdef ASACC |
---|
55 | unsigned short ASNb; |
---|
56 | struct AS ASTab[2][MAX_AS]; |
---|
57 | #endif |
---|
58 | struct PrefixV4 prefixV4Tab[2][MAX_IPV4_PREFIX]; |
---|
59 | struct PrefixV4 prefixV4SubnetTab[2][MAX_IPV4_SUBNET]; |
---|
60 | #ifdef MATRIX |
---|
61 | struct POP matrixPOP[2][ROUTER_INDEX_MAX][ROUTER_INDEX_MAX]; |
---|
62 | #endif |
---|
63 | struct PrefixV6 prefixV6Tab[2][MAX_IPV6_PREFIX]; |
---|
64 | #if defined(IPV6LINKAGG) && defined(IPV6AGGIDSNMP) |
---|
65 | struct IndexV6 indexV6Tab[2][ROUTER_INDEX_MAX][MAX_INDEX_BY_ROUTER]; |
---|
66 | #endif |
---|
67 | struct RenetcolMIB myMIB[2]; |
---|
68 | }; |
---|
69 | |
---|
70 | short rrdMibsUpdate(int); |
---|