versadac  1
versadac - Scalable Recorder Firmware
ENUM_PingStatus.h
1 /*
2  * Status related to ping request reply status.
3 */
4 
5 #ifndef __ENUM_PINGSTATUS_H
6 #define __ENUM_PINGSTATUS_H
7 
8 typedef enum
9 {
10  ENUM_PingDefault,
11  ENUM_PingInProgress,
12  ENUM_PingHostReachable,
13  ENUM_PingHostUnReachable,
14  ENUM_PingErrorInValue,
15  ENUM_PingUninitialized,
16  ENUM_PingTimeout,
17  ENUM_PingUnknownError,
18  ENUM_NumberOfPingStatus
19 
20 } PING_UTIL_STATUS;
21 
22 #endif /* __ENUM_PING_STATUS_H */