| 286 | } |
| 287 | |
| 288 | void RecvCycle(TCont* c) { |
| 289 | TLinkRef self(this); |
| 290 | |
| 291 | try { |
| 292 | DoRecvCycle(c); |
| 293 | } catch (...) { |
| 294 | if (!c->Cancelled()) { |
| 295 | Cdbg << "neh/tcp/2: " << CurrentExceptionMessage() << Endl; |
| 296 | } |
| 297 | } |
| 298 | } |
| 299 | |
| 300 | inline void DoRecvCycle(TCont* c) { |
| 301 | TContIO io(S, c); |
nothing calls this directly
no test coverage detected