congestion detection now working; also add case that if all IPs get timeout despite...
[pingcheck] / src / host / pingstatus.h
CommitLineData
f5c0f0d0
GMF
1/*
2The software in this package is distributed under the GNU General
3Public License version 2 (with a special exception described below).
4
5A copy of GNU General Public License (GPL) is included in this distribution,
6in the file COPYING.GPL.
7
8As a special exception, if other files instantiate templates or use macros
9or inline functions from this file, or you compile this file and link it
10with other works to produce a work based on this file, this file
11does not by itself cause the resulting work to be covered
12by the GNU General Public License.
13
14However the source code for this file must still be made available
15in accordance with section (3) of the GNU General Public License.
16
17This exception does not invalidate any other reasons why a work based
18on this file might be covered by the GNU General Public License.
19*/
20
21#ifndef PING_STATUS_H
22#define PING_STATUS_H
23
96c4e7a4
CH
24#include <string>
25
f5c0f0d0
GMF
26enum PingStatus
27{
28 PingStatus_NotSent,
29 PingStatus_SuccessReply,
96c4e7a4 30 PingStatus_FailureOther,
f5c0f0d0 31 PingStatus_FailureTimeout,
96c4e7a4
CH
32 PingStatus_FailureDestinationUnreachable,
33 PingStatus_FailureNoIP,
34 PingStatus_SuccessOutdatedIP,
35 PingStatus_FailureAsyncCancel,
4d7db1af
CH
36 PingStatus_FailureAsyncError,
37 PingStatus_SendFailed
f5c0f0d0
GMF
38};
39
96c4e7a4
CH
40std::string to_string( const PingStatus &status );
41
a9c88e1c 42#endif // PING_STATUS_H