mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-01-30 16:35:24 +00:00
event-test: Force compiler check in switch for connectClose callback
This commit is contained in:
parent
fa95523b24
commit
09ddd86027
@ -23,24 +23,27 @@ connectClose(virConnectPtr conn ATTRIBUTE_UNUSED,
|
||||
int reason,
|
||||
void *opaque ATTRIBUTE_UNUSED)
|
||||
{
|
||||
switch (reason) {
|
||||
run = 0;
|
||||
|
||||
switch ((virConnectCloseReason) reason) {
|
||||
case VIR_CONNECT_CLOSE_REASON_ERROR:
|
||||
fprintf(stderr, "Connection closed due to I/O error\n");
|
||||
break;
|
||||
return;
|
||||
|
||||
case VIR_CONNECT_CLOSE_REASON_EOF:
|
||||
fprintf(stderr, "Connection closed due to end of file\n");
|
||||
break;
|
||||
return;
|
||||
|
||||
case VIR_CONNECT_CLOSE_REASON_KEEPALIVE:
|
||||
fprintf(stderr, "Connection closed due to keepalive timeout\n");
|
||||
break;
|
||||
return;
|
||||
|
||||
case VIR_CONNECT_CLOSE_REASON_CLIENT:
|
||||
fprintf(stderr, "Connection closed due to client request\n");
|
||||
break;
|
||||
default:
|
||||
fprintf(stderr, "Connection closed due to unknown reason\n");
|
||||
break;
|
||||
return;
|
||||
};
|
||||
run = 0;
|
||||
|
||||
fprintf(stderr, "Connection closed due to unknown reason\n");
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user