mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-01 10:51:12 +00:00
14 lines
364 B
Plaintext
14 lines
364 B
Plaintext
|
/* -*- 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,
|
||
|
};
|