]> git.proxmox.com Git - qemu.git/blame - qapi/qmp-core.h
guest agent: add RPC blacklist command-line option
[qemu.git] / qapi / qmp-core.h
CommitLineData
43c20a43
MR
1/*
2 * Core Definitions for QAPI/QMP Dispatch
3 *
4 * Copyright IBM, Corp. 2011
5 *
6 * Authors:
7 * Anthony Liguori <aliguori@us.ibm.com>
8 *
9 * This work is licensed under the terms of the GNU LGPL, version 2.1 or later.
10 * See the COPYING.LIB file in the top-level directory.
11 *
12 */
13
14#ifndef QMP_CORE_H
15#define QMP_CORE_H
16
17#include "qobject.h"
18#include "qdict.h"
19#include "error.h"
20
21typedef void (QmpCommandFunc)(QDict *, QObject **, Error **);
22
23typedef enum QmpCommandType
24{
25 QCT_NORMAL,
26} QmpCommandType;
27
28typedef struct QmpCommand
29{
30 const char *name;
31 QmpCommandType type;
32 QmpCommandFunc *fn;
33 QTAILQ_ENTRY(QmpCommand) node;
abd6cf6d 34 bool enabled;
43c20a43
MR
35} QmpCommand;
36
37void qmp_register_command(const char *name, QmpCommandFunc *fn);
38QmpCommand *qmp_find_command(const char *name);
ab02ab2a 39QObject *qmp_dispatch(QObject *request);
abd6cf6d
MR
40void qmp_disable_command(const char *name);
41char **qmp_get_command_list(void);
43c20a43
MR
42
43#endif
ab02ab2a 44