| 146 | } |
| 147 | }; |
| 148 | struct TQueuedSend { |
| 149 | TGUID PacketGuid; |
| 150 | TIBMsgHandle MsgHandle; |
| 151 | TIntrusivePtr<TIBMemBlock> MemBlock; |
| 152 | ui64 RemoteAddr; |
| 153 | ui32 RemoteKey; |
| 154 | |
| 155 | TQueuedSend() { |
| 156 | } |
| 157 | TQueuedSend(const TGUID& packetGuid, TIBMsgHandle msgHandle) |
| 158 | : PacketGuid(packetGuid) |
| 159 | , MsgHandle(msgHandle) |
| 160 | , RemoteAddr(0) |
| 161 | , RemoteKey(0) |
| 162 | { |
| 163 | } |
| 164 | }; |
| 165 | struct TQueuedRecv { |
| 166 | TGUID PacketGuid, ConnectionGuid; |
| 167 | TIntrusivePtr<TIBMemBlock> Data; |