in communication.c [208:218]
void comm_send_request(HANDLE pipe, uint32_t command_id, uint32_t buffer_size)
{
assert(INVALID_HANDLE_VALUE != pipe);
packet_t* packet = NULL;
packet = comm_new_packet(command_id, buffer_size);
comm_send_packet(pipe, packet);
free(packet);
}