1
by brian
clean slate |
1 |
#ifndef RPL_CONSTANTS_H
|
2 |
#define RPL_CONSTANTS_H
|
|
3 |
||
4 |
/**
|
|
5 |
Enumeration of the incidents that can occur for the server.
|
|
6 |
*/
|
|
7 |
enum Incident { |
|
8 |
/** No incident */
|
|
9 |
INCIDENT_NONE, |
|
10 |
||
11 |
/** There are possibly lost events in the replication stream */
|
|
12 |
INCIDENT_LOST_EVENTS, |
|
13 |
||
14 |
/** Shall be last event of the enumeration */
|
|
15 |
INCIDENT_COUNT
|
|
16 |
};
|
|
17 |
||
18 |
#endif /* RPL_CONSTANTS_H */ |