void cl_process_command()

in client.c [623:635]


void cl_process_command(HANDLE pipe, const char* target, uint32_t pid,
    uint32_t command)
{
    assert(pipe);

    if (!handlers[command])
    {
        printf("Command %d doesn't exist\n", pid);
        return;
    }

    handlers[command](pipe, target, pid);
}