| 142 | } |
| 143 | }; |
| 144 | struct TQueuedSend { |
| 145 | TGUID PacketGuid; |
| 146 | TIBMsgHandle MsgHandle; |
| 147 | TIntrusivePtr<TIBMemBlock> MemBlock; |
| 148 | ui64 RemoteAddr; |
| 149 | ui32 RemoteKey; |
| 150 | |
| 151 | TQueuedSend() = default; |
| 152 | TQueuedSend(const TGUID& packetGuid, TIBMsgHandle msgHandle) |
| 153 | : PacketGuid(packetGuid) |
| 154 | , MsgHandle(msgHandle) |
| 155 | , RemoteAddr(0) |
| 156 | , RemoteKey(0) |
| 157 | { |
| 158 | } |
| 159 | }; |
| 160 | struct TQueuedRecv { |
| 161 | TGUID PacketGuid; |
| 162 | TIntrusivePtr<TIBMemBlock> Data; |