| 126 | } |
| 127 | |
| 128 | std::string toString() { |
| 129 | char buf[512]; |
| 130 | sprintf(buf, "T[%x %s to:%d tc:%d %s]", TOINT(this) , sockaddrToString(toaddr).c_str(), TOINT(timeout - getMillisecond()), |
| 131 | tryCount, |
| 132 | udpPkg ? udpPkg->toString().c_str() : "pkg:NULL"); |
| 133 | return (std::string) buf; |
| 134 | } |
| 135 | } TimeoutEvent; |
| 136 | |
| 137 |
nothing calls this directly
no test coverage detected