| 65 | namespace { |
| 66 | |
| 67 | amqp_bytes_t StringToBytes(const std::string &str) { |
| 68 | amqp_bytes_t ret; |
| 69 | ret.bytes = reinterpret_cast<void *>(const_cast<char *>(str.data())); |
| 70 | ret.len = str.length(); |
| 71 | return ret; |
| 72 | } |
| 73 | |
| 74 | amqp_basic_properties_t CreateAmqpProperties(const BasicMessage &mes, |
| 75 | Detail::amqp_pool_ptr_t &pool) { |
no outgoing calls
no test coverage detected