| 296 | }; |
| 297 | |
| 298 | struct TStopPacket { |
| 299 | inline char Type() const noexcept { |
| 300 | return static_cast<char>(PT_STOP); |
| 301 | } |
| 302 | |
| 303 | inline void Serialize(TPacketOutput* out) const { |
| 304 | Save(out, TString("stop packet")); |
| 305 | } |
| 306 | }; |
| 307 | |
| 308 | struct TBindError: public TSystemError { |
| 309 | }; |