| 23 | } |
| 24 | |
| 25 | std::string message_block_data(const ACE_Message_Block* mb) |
| 26 | { |
| 27 | std::string data; |
| 28 | for (const ACE_Message_Block* block = mb; block; block = block->cont()) { |
| 29 | data.append(block->rd_ptr(), block->length()); |
| 30 | } |
| 31 | return data; |
| 32 | } |
| 33 | |
| 34 | DataSampleHeader read_header(const Message_Block_Ptr& mb) |
| 35 | { |
no test coverage detected