| 385 | struct TClient { |
| 386 | struct TRequest: public TIntrusiveListItem<TRequest> { |
| 387 | inline TRequest(const TSimpleHandleRef& hndl, const TNehMessage& msg) |
| 388 | : Hndl(hndl) |
| 389 | , Msg(msg) |
| 390 | , Loc(Msg.Addr) |
| 391 | , RI(CachedThrResolve(TResolveInfo(Loc.Host, Loc.GetPort()))) |
| 392 | { |
| 393 | CreateGuid(&Guid); |
| 394 | } |
| 395 | |
| 396 | inline void Serialize(TParts& parts) { |
| 397 | TMemoryOutput out(Buf, sizeof(Buf)); |
nothing calls this directly
no test coverage detected