congestion detection now working; also add case that if all IPs get timeout despite...
[pingcheck] / src / host / pingstatus.cpp
1 /*
2  The software in this package is distributed under the GNU General
3  Public License version 2 (with a special exception described below).
4
5  A copy of GNU General Public License (GPL) is included in this distribution,
6  in the file COPYING.GPL.
7
8  As a special exception, if other files instantiate templates or use macros
9  or inline functions from this file, or you compile this file and link it
10  with other works to produce a work based on this file, this file
11  does not by itself cause the resulting work to be covered
12  by the GNU General Public License.
13
14  However the source code for this file must still be made available
15  in accordance with section (3) of the GNU General Public License.
16
17  This exception does not invalidate any other reasons why a work based
18  on this file might be covered by the GNU General Public License.
19
20  Christian Herdtweck, Intra2net AG 2015
21  */
22
23 #include "host/pingstatus.h"
24
25 std::string to_string( const PingStatus &status )
26 {
27     switch (status)
28     {
29         case PingStatus_NotSent: return "PingNotSent"; break;
30         case PingStatus_SuccessReply: return "PingSucceeded"; break;
31         case PingStatus_FailureOther: return "PingFailed"; break;
32         case PingStatus_FailureTimeout: return "PingTimedOut"; break;
33         case PingStatus_FailureDestinationUnreachable:
34                                          return "PingFailed(DestUnreachable)";
35                                          break;
36         case PingStatus_FailureNoIP: return "PingFailed(NoIP)"; break;
37         case PingStatus_SuccessOutdatedIP: return "PingSucceeded(OutdatedIP)";
38                                            break;
39         case PingStatus_FailureAsyncCancel: return "PingFailed(AsyncCancel)";
40                                             break;
41         case PingStatus_FailureAsyncError: return "PingFailed(AsyncError)";
42                                            break;
43         case PingStatus_SendFailed: return "SendingPingFailed"; break;
44         default: return "PingStatusUnknown"; break;
45     }
46 }
47