1
0
mirror of https://gitlab.com/libvirt/libvirt.git synced 2025-03-07 17:28:15 +00:00

xen: Ignore return status for TCP_NODELAY

This commit is contained in:
John Ferlan 2013-01-08 12:40:21 -05:00 committed by Eric Blake
parent b545f65d16
commit dc350eabb3

View File

@ -89,11 +89,10 @@ do_connect(virConnectPtr xend)
}
/*
* try to desactivate slow-start
* try to deactivate slow-start
*/
setsockopt(s, IPPROTO_TCP, TCP_NODELAY, (void *)&no_slow_start,
sizeof(no_slow_start));
ignore_value(setsockopt(s, IPPROTO_TCP, TCP_NODELAY, (void *)&no_slow_start,
sizeof(no_slow_start)));
if (connect(s, (struct sockaddr *)&priv->addr, priv->addrlen) == -1) {
VIR_FORCE_CLOSE(s); /* preserves errno */