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
0024d747
Commit
0024d747
authored
Aug 31, 2002
by
dscho
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
compiler warnings and format vulnerabilities fixed
parent
08bfb7cb
Changes
8
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
25 additions
and
13 deletions
+25
-13
Makefile
Makefile
+3
-1
cvs_update_anonymously
cvs_update_anonymously
+1
-0
httpd.c
httpd.c
+1
-1
mac.c
mac.c
+4
-0
pnmshow24.c
pnmshow24.c
+1
-1
vncev.c
vncev.c
+7
-6
x11vnc.c
x11vnc.c
+7
-2
zippy.c
zippy.c
+1
-2
No files found.
Makefile
View file @
0024d747
...
...
@@ -28,7 +28,7 @@ OSX_LIBS = -framework ApplicationServices -framework Carbon -framework IOKit
# for x11vnc
#XLIBS = -L/usr/X11R6/lib -lXtst -lXext -lX11
XLIBS
=
-L
/usr/lib32
-lXtst
-lXext
-lX11
XLIBS
=
-L
/usr/
X11R6/lib
-L
/usr/
lib32
-lXtst
-lXext
-lX11
SOURCES
=
main.c rfbserver.c sraRegion.c auth.c sockets.c
\
stats.c corre.c hextile.c rre.c translate.c cutpaste.c
\
...
...
@@ -42,6 +42,8 @@ INSTALLHEADER=rfb.h rfbproto.h sraRegion.h keysym.h
all
:
example pnmshow storepasswd
all_examples
:
example pnmshow x11vnc x11vnc_static sratest blooptest pnmshow24 fontsel vncev zippy storepasswd
install_OSX
:
OSXvnc-server
cp
OSXvnc-server storepasswd ../OSXvnc/build/OSXvnc.app/Contents/MacOS
...
...
cvs_update_anonymously
0 → 100644
View file @
0024d747
cvs -z3 -d :pserver:anonymous@cvs.libvncserver.sf.net:/cvsroot/libvncserver update
httpd.c
View file @
0024d747
...
...
@@ -211,7 +211,7 @@ httpProcessInput(rfbScreenInfoPtr rfbScreen)
unsigned
int
maxFnameLen
;
FILE
*
fd
;
Bool
performSubstitutions
=
FALSE
;
char
str
[
256
];
char
str
[
256
+
32
];
#ifndef WIN32
struct
passwd
*
user
=
getpwuid
(
getuid
());
#endif
...
...
mac.c
View file @
0024d747
...
...
@@ -552,6 +552,8 @@ int main(int argc,char *argv[])
for
(
i
=
argc
-
1
;
i
>
0
;
i
--
)
#ifdef LOCAL_CONTROL
if
(
i
<
argc
-
1
&&
!
strcmp
(
argv
[
i
],
"-toggleviewonly"
))
{
if
(
strlen
(
argv
[
i
+
1
])
>
1022
)
argv
[
i
+
1
][
1022
]
=
0
;
sprintf
(
message
,
"t%s"
,
argv
[
i
+
1
]);
send_message
(
&
single_instance
,
message
);
exit
(
0
);
...
...
@@ -562,6 +564,8 @@ int main(int argc,char *argv[])
}
else
#ifdef BACKCHANNEL
if
(
i
<
argc
-
1
&&
!
strcmp
(
argv
[
i
],
"-backchannel"
))
{
if
(
strlen
(
argv
[
i
+
1
])
>
1022
)
argv
[
i
+
1
][
1022
]
=
0
;
sprintf
(
message
,
"b%s"
,
argv
[
i
+
1
]);
send_message
(
&
single_instance
,
message
);
exit
(
0
);
...
...
pnmshow24.c
View file @
0024d747
...
...
@@ -16,7 +16,7 @@ int main(int argc,char** argv)
{
FILE
*
in
=
stdin
;
int
j
,
width
,
height
,
paddedWidth
;
unsigned
char
buffer
[
1024
];
char
buffer
[
1024
];
rfbScreenInfoPtr
rfbScreen
;
if
(
argc
>
1
)
{
...
...
vncev.c
View file @
0024d747
...
...
@@ -67,10 +67,10 @@ void output(rfbScreenInfoPtr s,char* line)
void
dokey
(
Bool
down
,
KeySym
k
,
rfbClientPtr
cl
)
{
char
buffer
[
1024
];
char
buffer
[
1024
+
32
];
sprintf
(
buffer
,
"%s: %s (0x%x)"
,
down
?
"down"
:
"up"
,
keys
[
k
&
0x3ff
]
?
keys
[
k
&
0x3ff
]
:
""
,
k
);
down
?
"down"
:
"up"
,
keys
[
k
&
0x3ff
]
?
keys
[
k
&
0x3ff
]
:
""
,
(
unsigned
int
)
k
);
output
(
cl
->
screen
,
buffer
);
}
...
...
@@ -84,17 +84,18 @@ void doptr(int buttonMask,int x,int y,rfbClientPtr cl)
}
void
newclient
(
rfbClientPtr
cl
)
enum
rfbNewClientAction
newclient
(
rfbClientPtr
cl
)
{
char
buffer
[
1024
];
struct
sockaddr_in
addr
;
int
len
=
sizeof
(
addr
),
ip
;
unsigned
int
len
=
sizeof
(
addr
),
ip
;
getpeername
(
cl
->
sock
,
&
addr
,
&
len
);
getpeername
(
cl
->
sock
,
(
struct
sockaddr
*
)
&
addr
,
&
len
);
ip
=
ntohl
(
addr
.
sin_addr
.
s_addr
);
sprintf
(
buffer
,
"Client connected from ip %d.%d.%d.%d"
,
(
ip
>>
24
)
&
0xff
,(
ip
>>
16
)
&
0xff
,(
ip
>>
8
)
&
0xff
,
ip
&
0xff
);
output
(
cl
->
screen
,
buffer
);
return
RFB_CLIENT_ACCEPT
;
}
int
main
(
int
argc
,
char
**
argv
)
...
...
@@ -102,7 +103,7 @@ int main(int argc,char** argv)
rfbScreenInfoPtr
s
=
rfbGetScreen
(
&
argc
,
argv
,
640
,
480
,
8
,
1
,
1
);
s
->
colourMap
.
is16
=
FALSE
;
s
->
colourMap
.
count
=
2
;
s
->
colourMap
.
data
.
bytes
=
"
\xd0\xd0\xd0\x30\x01\xe0
"
;
s
->
colourMap
.
data
.
bytes
=
(
unsigned
char
*
)
"
\xd0\xd0\xd0\x30\x01\xe0
"
;
s
->
rfbServerFormat
.
trueColour
=
FALSE
;
s
->
frameBuffer
=
f
;
s
->
kbdAddEvent
=
dokey
;
...
...
x11vnc.c
View file @
0024d747
...
...
@@ -4,6 +4,7 @@
*/
#include <X11/Xlib.h>
#include <X11/Xutil.h>
#include <X11/keysym.h>
#include <X11/extensions/XTest.h>
#ifndef NO_SHM
...
...
@@ -338,6 +339,8 @@ int main(int argc,char** argv)
for
(
i
=
argc
-
1
;
i
>
0
;
i
--
)
#ifdef LOCAL_CONTROL
if
(
i
<
argc
-
1
&&
!
strcmp
(
argv
[
i
],
"-toggleviewonly"
))
{
if
(
strlen
(
argv
[
i
+
1
])
>
1022
)
argv
[
i
+
1
][
1022
]
=
0
;
sprintf
(
message
,
"t%s"
,
argv
[
i
+
1
]);
send_message
(
&
single_instance
,
message
);
exit
(
0
);
...
...
@@ -348,6 +351,8 @@ int main(int argc,char** argv)
}
else
#ifdef BACKCHANNEL
if
(
i
<
argc
-
1
&&
!
strcmp
(
argv
[
i
],
"-backchannel"
))
{
if
(
strlen
(
argv
[
i
+
1
])
>
1022
)
argv
[
i
+
1
][
1022
]
=
0
;
sprintf
(
message
,
"b%s"
,
argv
[
i
+
1
]);
send_message
(
&
single_instance
,
message
);
exit
(
0
);
...
...
@@ -417,7 +422,7 @@ int main(int argc,char** argv)
for
(
i
=
0
;
i
<
256
;
i
++
)
color
[
i
].
pixel
=
i
;
XQueryColors
(
dpy
,
DefaultColormap
(
dpy
,
xscreen
),
color
,
256
);
screen
->
colourMap
.
data
.
shorts
=
(
short
*
)
malloc
(
3
*
sizeof
(
short
)
*
screen
->
colourMap
.
count
);
screen
->
colourMap
.
data
.
shorts
=
(
unsigned
short
*
)
malloc
(
3
*
sizeof
(
short
)
*
screen
->
colourMap
.
count
);
for
(
i
=
0
;
i
<
screen
->
colourMap
.
count
;
i
++
)
{
screen
->
colourMap
.
data
.
shorts
[
i
*
3
+
0
]
=
color
[
i
].
red
;
screen
->
colourMap
.
data
.
shorts
[
i
*
3
+
1
]
=
color
[
i
].
green
;
...
...
@@ -509,7 +514,7 @@ int main(int argc,char** argv)
rfbScreenCleanup
(
screen
);
XFree
(
dpy
);
#ifndef NO_SHM
XShmDetach
(
dpy
,
framebufferImage
);
XShmDetach
(
dpy
,
&
shminfo
);
#endif
exit
(
0
);
}
...
...
zippy.c
View file @
0024d747
...
...
@@ -21,7 +21,6 @@ void on_key_press (Bool down,KeySym key,rfbClientPtr cl);
int
main
(
int
argc
,
char
**
argv
)
{
int
i
;
rfbScreenInfoPtr
server
;
rfbProcessSizeArguments
(
&
maxx
,
&
maxy
,
&
bpp
,
&
argc
,
argv
);
...
...
@@ -109,7 +108,7 @@ void draw_primary_colours_generic_fast(rfbScreenInfoPtr s,int x1,int y1,int x2,i
void
draw_primary_colours_generic_ultrafast
(
rfbScreenInfoPtr
s
,
int
x1
,
int
y1
,
int
x2
,
int
y2
)
{
rfbPixelFormat
f
=
s
->
rfbServerFormat
;
int
i
,
j
,
y3
=
(
y1
*
2
+
y2
)
/
3
,
y4
=
(
y1
+
y2
*
2
)
/
3
;
int
y3
=
(
y1
*
2
+
y2
)
/
3
,
y4
=
(
y1
+
y2
*
2
)
/
3
;
/* fill rectangles */
rfbFillRect
(
s
,
x1
,
y1
,
x2
,
y3
,
f
.
redMax
<<
f
.
redShift
);
rfbFillRect
(
s
,
x1
,
y3
,
x2
,
y4
,
f
.
greenMax
<<
f
.
greenShift
);
...
...
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