Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
L
libvncserver
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
rasky
libvncserver
Commits
d7c0b34b
Commit
d7c0b34b
authored
May 11, 2009
by
Ben Klopfenstein
Committed by
Johannes Schindelin
May 12, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
libvncclient: Unix sockets support by Ben Klopfenstein
Signed-off-by:
Johannes Schindelin
<
johannes.schindelin@gmx.de
>
parent
4088906b
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
54 additions
and
5 deletions
+54
-5
rfbproto.c
libvncclient/rfbproto.c
+24
-5
sockets.c
libvncclient/sockets.c
+29
-0
rfbclient.h
rfb/rfbclient.h
+1
-0
No files found.
libvncclient/rfbproto.c
View file @
d7c0b34b
...
...
@@ -29,6 +29,8 @@
#endif
#ifndef WIN32
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#else
#define strncasecmp _strnicmp
#endif
...
...
@@ -342,6 +344,15 @@ DefaultSupportedMessagesTightVNC(rfbClient* client)
SetServer2Client
(
client
,
rfbTextChat
);
}
static
rfbBool
IsUnixSocket
(
const
char
*
name
)
{
struct
stat
sb
;
if
(
stat
(
name
,
&
sb
)
&&
(
sb
.
st_mode
&
S_IFMT
)
==
S_IFSOCK
)
return
TRUE
;
return
FALSE
;
}
/*
* ConnectToRFBServer.
*/
...
...
@@ -378,13 +389,21 @@ ConnectToRFBServer(rfbClient* client,const char *hostname, int port)
return
TRUE
;
}
if
(
!
StringToIPAddr
(
hostname
,
&
host
))
{
rfbClientLog
(
"Couldn't convert '%s' to host address
\n
"
,
hostname
);
return
FALSE
;
#ifndef WIN32
if
(
IsUnixSocket
(
hostname
))
/* serverHost is a UNIX socket. */
client
->
sock
=
ConnectClientToUnixSock
(
hostname
);
else
#endif
{
/* serverHost is a hostname */
if
(
!
StringToIPAddr
(
hostname
,
&
host
))
{
rfbClientLog
(
"Couldn't convert '%s' to host address
\n
"
,
hostname
);
return
FALSE
;
}
client
->
sock
=
ConnectClientToTcpAddr
(
host
,
port
);
}
client
->
sock
=
ConnectClientToTcpAddr
(
host
,
port
);
if
(
client
->
sock
<
0
)
{
rfbClientLog
(
"Unable to connect to VNC server
\n
"
);
return
FALSE
;
...
...
libvncclient/sockets.c
View file @
d7c0b34b
...
...
@@ -38,6 +38,7 @@
#else
#include <sys/socket.h>
#include <netinet/in.h>
#include <sys/un.h>
#include <netinet/tcp.h>
#include <arpa/inet.h>
#include <netdb.h>
...
...
@@ -297,6 +298,34 @@ ConnectClientToTcpAddr(unsigned int host, int port)
return
sock
;
}
int
ConnectClientToUnixSock
(
const
char
*
sockFile
)
{
#ifdef WIN32
rfbClientErr
(
"Windows doesn't support UNIX sockets
\n
"
);
return
-
1
;
#else
int
sock
;
struct
sockaddr_un
addr
;
addr
.
sun_family
=
AF_UNIX
;
strcpy
(
addr
.
sun_path
,
sockFile
);
sock
=
socket
(
AF_UNIX
,
SOCK_STREAM
,
0
);
if
(
sock
<
0
)
{
rfbClientErr
(
"ConnectToUnixSock: socket (%s)
\n
"
,
strerror
(
errno
));
return
-
1
;
}
if
(
connect
(
sock
,
(
struct
sockaddr
*
)
&
addr
,
sizeof
(
addr
.
sun_family
)
+
strlen
(
addr
.
sun_path
))
<
0
)
{
rfbClientErr
(
"ConnectToUnixSock: connect
\n
"
);
close
(
sock
);
return
-
1
;
}
return
sock
;
#endif
}
/*
...
...
rfb/rfbclient.h
View file @
d7c0b34b
...
...
@@ -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
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment