| 385 | // DataPacket |
| 386 | |
| 387 | DataPacket::DataPacket() |
| 388 | { |
| 389 | // Double check that packet struct is correct length. Watch out for RTTI increasing the size. |
| 390 | static_assert( sizeof( DataPacket ) == ( 64 * 1024 ), "Unexpected size of DataPacket" ); |
| 391 | } |
| 392 | |
| 393 | void DataPacket::verify( unsigned bufferLength ) const |
| 394 | { |
nothing calls this directly
no outgoing calls
no test coverage detected