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
48f2d395
Commit
48f2d395
authored
Jan 13, 2016
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gnutls: use custom receive callback
parent
51b1df72
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
4 deletions
+21
-4
modules/misc/gnutls.c
modules/misc/gnutls.c
+21
-4
No files found.
modules/misc/gnutls.c
View file @
48f2d395
...
...
@@ -130,7 +130,23 @@ static int gnutls_Error(vlc_tls_t *tls, int val)
return
-
1
;
}
static
ssize_t
vlc_gnutls_writev
(
gnutls_transport_ptr_t
ptr
,
static
ssize_t
vlc_gnutls_read
(
gnutls_transport_ptr_t
ptr
,
void
*
buf
,
size_t
length
)
{
int
fd
=
(
intptr_t
)
ptr
;
struct
iovec
iov
=
{
.
iov_base
=
buf
,
.
iov_len
=
length
,
};
struct
msghdr
msg
=
{
.
msg_iov
=
&
iov
,
.
msg_iovlen
=
1
,
};
return
recvmsg
(
fd
,
&
msg
,
0
);
}
static
ssize_t
vlc_gnutls_writev
(
gnutls_transport_ptr_t
ptr
,
const
giovec_t
*
giov
,
int
iovcnt
)
{
if
(
unlikely
((
unsigned
)
iovcnt
>
IOV_MAX
))
...
...
@@ -297,8 +313,9 @@ static int gnutls_SessionOpen(vlc_tls_creds_t *creds, vlc_tls_t *tls, int type,
free
(
protv
);
}
gnutls_transport_set_int
(
session
,
fd
);
gnutls_transport_set_vec_push_function
(
session
,
vlc_gnutls_writev
);
gnutls_transport_set_ptr
(
session
,
(
void
*
)(
intptr_t
)
fd
);
gnutls_transport_set_vec_push_function
(
session
,
vlc_gnutls_writev
);
gnutls_transport_set_pull_function
(
session
,
vlc_gnutls_read
);
tls
->
sys
=
session
;
tls
->
get_fd
=
gnutls_GetFD
;
tls
->
readv
=
gnutls_Recv
;
...
...
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