mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-01 10:51:12 +00:00
79d16419c4
This is a special type of stream packet, that is bidirectional and contains information regarding how many bytes each side will be skipping in the stream. Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
50 lines
1.5 KiB
C
50 lines
1.5 KiB
C
/* -*- c -*- */
|
|
enum virNetMessageType {
|
|
VIR_NET_CALL = 0,
|
|
VIR_NET_REPLY = 1,
|
|
VIR_NET_MESSAGE = 2,
|
|
VIR_NET_STREAM = 3,
|
|
VIR_NET_CALL_WITH_FDS = 4,
|
|
VIR_NET_REPLY_WITH_FDS = 5,
|
|
VIR_NET_STREAM_HOLE = 6,
|
|
};
|
|
enum virNetMessageStatus {
|
|
VIR_NET_OK = 0,
|
|
VIR_NET_ERROR = 1,
|
|
VIR_NET_CONTINUE = 2,
|
|
};
|
|
struct virNetMessageHeader {
|
|
u_int prog;
|
|
u_int vers;
|
|
int proc;
|
|
virNetMessageType type;
|
|
u_int serial;
|
|
virNetMessageStatus status;
|
|
};
|
|
struct virNetMessageNonnullDomain {
|
|
virNetMessageNonnullString name;
|
|
virNetMessageUUID uuid;
|
|
int id;
|
|
};
|
|
struct virNetMessageNonnullNetwork {
|
|
virNetMessageNonnullString name;
|
|
virNetMessageUUID uuid;
|
|
};
|
|
struct virNetMessageError {
|
|
int code;
|
|
int domain;
|
|
virNetMessageString message;
|
|
int level;
|
|
virNetMessageDomain dom;
|
|
virNetMessageString str1;
|
|
virNetMessageString str2;
|
|
virNetMessageString str3;
|
|
int int1;
|
|
int int2;
|
|
virNetMessageNetwork net;
|
|
};
|
|
struct virNetStreamHole {
|
|
int64_t length;
|
|
u_int flags;
|
|
};
|