X-Git-Url: http://git.demorecorder.com/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fxcb_util.c;h=f17aa3c8419b31540610c6ed1da5401135e63c3d;hb=7d235c62f0d5bd0df1236cc52141c10c5d272a18;hp=7173db3f72f6ba8407fa668d0f0b20da1bb2c203;hpb=f7bd139616d228b20eeb2c96b85e4093606c93fc;p=free-sw%2Fxcb%2Flibxcb diff --git a/src/xcb_util.c b/src/xcb_util.c index 7173db3..f17aa3c 100644 --- a/src/xcb_util.c +++ b/src/xcb_util.c @@ -235,6 +235,11 @@ static int _xcb_open(const char *host, char *protocol, const int display) fd = _xcb_open_unix(protocol, file); free(file); + if (fd < 0 && !protocol && *host == '\0') { + unsigned short port = X_TCP_PORT + display; + fd = _xcb_open_tcp(host, protocol, port); + } + return fd; #endif /* !_WIN32 */ return -1; /* if control reaches here then something has gone wrong */