diff options
author | Ben Klopfenstein <benklop@gmail.com> | 2009-05-12 01:51:23 +0200 |
---|---|---|
committer | Johannes Schindelin <johannes.schindelin@gmx.de> | 2009-05-12 14:46:25 +0200 |
commit | d7c0b34b62c8edd302e273588bae7467ecbfb987 (patch) | |
tree | 33d09f8112f19a0be53820a429e81da43269f9b9 /rfb/rfbclient.h | |
parent | 4088906b1341709435318226790b06296420a5e2 (diff) | |
download | libtdevnc-d7c0b34b62c8edd302e273588bae7467ecbfb987.tar.gz libtdevnc-d7c0b34b62c8edd302e273588bae7467ecbfb987.zip |
libvncclient: Unix sockets support by Ben Klopfenstein
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Diffstat (limited to 'rfb/rfbclient.h')
-rw-r--r-- | rfb/rfbclient.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/rfb/rfbclient.h b/rfb/rfbclient.h index b92f220..be6f322 100644 --- a/rfb/rfbclient.h +++ b/rfb/rfbclient.h @@ -314,6 +314,7 @@ extern rfbBool WriteToRFBServer(rfbClient* client, char *buf, int n); extern int FindFreeTcpPort(void); extern int ListenAtTcpPort(int port); extern int ConnectClientToTcpAddr(unsigned int host, int port); +extern int ConnectClientToUnixSock(const char *sockFile); extern int AcceptTcpConnection(int listenSock); extern rfbBool SetNonBlocking(int sock); |