Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
N
noVNC
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
noVNC
Commits
e70f1d94
Commit
e70f1d94
authored
Nov 06, 2010
by
Joel Martin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove left over record code. Squelch compile warnings
parent
f61274c8
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
8 deletions
+4
-8
md5.c
utils/md5.c
+4
-0
websocket.h
utils/websocket.h
+0
-1
wsproxy.c
utils/wsproxy.c
+0
-7
No files found.
utils/md5.c
View file @
e70f1d94
...
@@ -56,6 +56,10 @@
...
@@ -56,6 +56,10 @@
# define md5_read_ctx __md5_read_ctx
# define md5_read_ctx __md5_read_ctx
# define md5_stream __md5_stream
# define md5_stream __md5_stream
# define md5_buffer __md5_buffer
# define md5_buffer __md5_buffer
#else
/* Squelch compiler complaints */
void
md5_process_bytes
(
const
void
*
buffer
,
size_t
len
,
struct
md5_ctx
*
ctx
);
void
md5_process_block
(
const
void
*
buffer
,
size_t
len
,
struct
md5_ctx
*
ctx
);
#endif
#endif
#ifdef WORDS_BIGENDIAN
#ifdef WORDS_BIGENDIAN
...
...
utils/websocket.h
View file @
e70f1d94
...
@@ -14,7 +14,6 @@ typedef struct {
...
@@ -14,7 +14,6 @@ typedef struct {
int
handler_id
;
int
handler_id
;
int
ssl_only
;
int
ssl_only
;
int
daemon
;
int
daemon
;
char
*
record
;
char
*
cert
;
char
*
cert
;
}
settings_t
;
}
settings_t
;
...
...
utils/wsproxy.c
View file @
e70f1d94
...
@@ -273,13 +273,6 @@ int main(int argc, char *argv[])
...
@@ -273,13 +273,6 @@ int main(int argc, char *argv[])
case
'f'
:
case
'f'
:
foreground
=
1
;
foreground
=
1
;
break
;
break
;
case
'r'
:
if
((
fd
=
open
(
optarg
,
O_CREAT
,
S_IRUSR
|
S_IWUSR
|
S_IRGRP
|
S_IROTH
))
<
-
1
)
{
usage
(
"Could not access %s
\n
"
,
optarg
);
}
close
(
fd
);
break
;
case
'c'
:
case
'c'
:
settings
.
cert
=
realpath
(
optarg
,
NULL
);
settings
.
cert
=
realpath
(
optarg
,
NULL
);
if
(
!
settings
.
cert
)
{
if
(
!
settings
.
cert
)
{
...
...
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