Add prefixes to MMST command packet. */
| 116 | |
| 117 | /** Add prefixes to MMST command packet. */ |
| 118 | static void insert_command_prefixes(MMSContext *mms, |
| 119 | uint32_t prefix1, uint32_t prefix2) |
| 120 | { |
| 121 | bytestream_put_le32(&mms->write_out_ptr, prefix1); // first prefix |
| 122 | bytestream_put_le32(&mms->write_out_ptr, prefix2); // second prefix |
| 123 | } |
| 124 | |
| 125 | /** Send a prepared MMST command packet. */ |
| 126 | static int send_command_packet(MMSTContext *mmst) |
no outgoing calls
no test coverage detected