diff --git a/src/xcb_util.c b/src/xcb_util.c index 4ae9097..8873f26 100644 --- a/src/xcb_util.c +++ b/src/xcb_util.c @@ -30,6 +30,7 @@ #include #include #include +#include #ifdef DNETCONN #include #include @@ -250,6 +251,9 @@ static int _xcb_open_tcp(char *host, char *protocol, const unsigned short port) { fd = socket(addr->ai_family, addr->ai_socktype, addr->ai_protocol); if(fd >= 0) { + int on = 1; + setsockopt(fd, IPPROTO_TCP, TCP_NODELAY, &on, sizeof(on)); + if (connect(fd, addr->ai_addr, addr->ai_addrlen) >= 0) break; close(fd);