mirror of https://gitee.com/openkylin/libvirt.git
lxc: fix XDR protocol compliance
The RFC spec for XDR does not allow enums to omit their values, they must be explicitly given. Don't rely on this rpcgen language extension. Reviewed-by: Ján Tomko <jtomko@redhat.com> Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
This commit is contained in:
parent
b2034bb04c
commit
f143e4e7b6
|
@ -7,9 +7,9 @@
|
|||
%#include "virxdrdefs.h"
|
||||
|
||||
enum virLXCMonitorExitStatus {
|
||||
VIR_LXC_MONITOR_EXIT_STATUS_ERROR,
|
||||
VIR_LXC_MONITOR_EXIT_STATUS_SHUTDOWN,
|
||||
VIR_LXC_MONITOR_EXIT_STATUS_REBOOT
|
||||
VIR_LXC_MONITOR_EXIT_STATUS_ERROR = 0,
|
||||
VIR_LXC_MONITOR_EXIT_STATUS_SHUTDOWN = 1,
|
||||
VIR_LXC_MONITOR_EXIT_STATUS_REBOOT = 2
|
||||
};
|
||||
|
||||
struct virLXCMonitorExitEventMsg {
|
||||
|
|
Loading…
Reference in New Issue