mirror of
https://dev.lirent.ru/Vatrog/vm-automation-signaling.git
synced 2026-06-26 04:36:37 +03:00
14 lines
465 B
C
14 lines
465 B
C
|
|
#ifndef VMSIG_VMHOST_H
|
||
|
|
#define VMSIG_VMHOST_H
|
||
|
|
|
||
|
|
/* Private config of the vmhost adapter (signaling's own QMP client).
|
||
|
|
* cfg==NULL or no qmp_path => stub mode (synthetic events, no QEMU).
|
||
|
|
* qmp_path given => armed: connect to QEMU's QMP socket ('@' prefix = abstract).
|
||
|
|
* No build flag needed — the client depends only on POSIX and its own code. */
|
||
|
|
typedef struct {
|
||
|
|
int stub;
|
||
|
|
const char* qmp_path;
|
||
|
|
} vmsig_vmhost_cfg;
|
||
|
|
|
||
|
|
#endif /* VMSIG_VMHOST_H */
|