mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-01-12 07:42:56 +00:00
0899322d61
Commit 509eb51 added lxc_protocol.x; but without the initial checkin of src/lxc_protocol-structs, 'make check' would fail for anyone with pdwtags installed: make[3]: *** No rule to make target `lxc_protocol-structs', needed by `check-protocol'. Stop. * src/lxc_protocol-structs: New file.
14 lines
364 B
C
14 lines
364 B
C
/* -*- c -*- */
|
|
struct remote_nonnull_domain {
|
|
remote_nonnull_string name;
|
|
remote_uuid uuid;
|
|
int id;
|
|
};
|
|
struct lxc_domain_open_namespace_args {
|
|
remote_nonnull_domain dom;
|
|
u_int flags;
|
|
};
|
|
enum lxc_procedure {
|
|
LXC_PROC_DOMAIN_OPEN_NAMESPACE = 1,
|
|
};
|