Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
23cf2698
Commit
23cf2698
authored
Nov 30, 2014
by
Felix Paul Kühne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
securetransport: fix compilation warnings
parent
f786fa73
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
3 deletions
+5
-3
modules/misc/securetransport.c
modules/misc/securetransport.c
+5
-3
No files found.
modules/misc/securetransport.c
View file @
23cf2698
...
...
@@ -46,8 +46,10 @@
static
int
OpenClient
(
vlc_tls_creds_t
*
);
static
void
CloseClient
(
vlc_tls_creds_t
*
);
static
int
OpenServer
(
vlc_tls_creds_t
*
crd
,
const
char
*
cert
,
const
char
*
key
);
static
void
CloseServer
(
vlc_tls_creds_t
*
);
#if !TARGET_OS_IPHONE
static
int
OpenServer
(
vlc_tls_creds_t
*
crd
,
const
char
*
cert
,
const
char
*
key
);
static
void
CloseServer
(
vlc_tls_creds_t
*
);
#endif
vlc_module_begin
()
set_description
(
N_
(
"TLS support for OS X and iOS"
))
...
...
@@ -487,7 +489,7 @@ static int st_Recv (void *opaque, void *buf, size_t length)
/* peer performed shutdown */
if
(
ret
==
errSSLClosedNoNotify
||
ret
==
errSSLClosedGraceful
)
{
msg_Dbg
(
session
,
"Got close notification with code %
d"
,
ret
);
msg_Dbg
(
session
,
"Got close notification with code %
i"
,
(
int
)
ret
);
return
0
;
}
...
...
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