| 159 | std::map<int64_t, std::pair<uint32_t, uint8_t *> *> sessionMap; |
| 160 | |
| 161 | std::string toString() { |
| 162 | char buf[512]; |
| 163 | sprintf(buf, "R[%x %s %s s:%d m:%d]", TOINT(this), sockaddrToString(fromaddr).c_str(), getStatus(status), expectedSeq, |
| 164 | (int)sessionMap.size()); |
| 165 | return (std::string) buf; |
| 166 | } |
| 167 | } Receiver; |
| 168 | |
| 169 | typedef struct SendPack { |
nothing calls this directly
no test coverage detected