mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-04 12:21:25 +00:00
8 lines
164 B
Plaintext
8 lines
164 B
Plaintext
|
const KEEPALIVE_PROGRAM = 0x6b656570;
|
||
|
const KEEPALIVE_PROTOCOL_VERSION = 1;
|
||
|
|
||
|
enum keepalive_procedure {
|
||
|
KEEPALIVE_PROC_PING = 1,
|
||
|
KEEPALIVE_PROC_PONG = 2
|
||
|
};
|