Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
Actor Framework
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
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
cpp-libs
Actor Framework
Commits
2815cf25
Commit
2815cf25
authored
Sep 11, 2022
by
Dominik Charousset
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix error handling in OpenSSL wrapper
parent
4f44a6c8
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
libcaf_net/src/net/ssl/connection.cpp
libcaf_net/src/net/ssl/connection.cpp
+5
-0
No files found.
libcaf_net/src/net/ssl/connection.cpp
View file @
2815cf25
...
@@ -104,24 +104,29 @@ errc connection::last_error(ptrdiff_t ret) const {
...
@@ -104,24 +104,29 @@ errc connection::last_error(ptrdiff_t ret) const {
// -- connecting and teardown --------------------------------------------------
// -- connecting and teardown --------------------------------------------------
ptrdiff_t
connection
::
connect
()
{
ptrdiff_t
connection
::
connect
()
{
ERR_clear_error
();
return
SSL_connect
(
native
(
pimpl_
));
return
SSL_connect
(
native
(
pimpl_
));
}
}
ptrdiff_t
connection
::
accept
()
{
ptrdiff_t
connection
::
accept
()
{
ERR_clear_error
();
return
SSL_accept
(
native
(
pimpl_
));
return
SSL_accept
(
native
(
pimpl_
));
}
}
ptrdiff_t
connection
::
close
()
{
ptrdiff_t
connection
::
close
()
{
ERR_clear_error
();
return
SSL_shutdown
(
native
(
pimpl_
));
return
SSL_shutdown
(
native
(
pimpl_
));
}
}
// -- reading and writing ------------------------------------------------------
// -- reading and writing ------------------------------------------------------
ptrdiff_t
connection
::
read
(
byte_span
buf
)
{
ptrdiff_t
connection
::
read
(
byte_span
buf
)
{
ERR_clear_error
();
return
SSL_read
(
native
(
pimpl_
),
buf
.
data
(),
static_cast
<
int
>
(
buf
.
size
()));
return
SSL_read
(
native
(
pimpl_
),
buf
.
data
(),
static_cast
<
int
>
(
buf
.
size
()));
}
}
ptrdiff_t
connection
::
write
(
const_byte_span
buf
)
{
ptrdiff_t
connection
::
write
(
const_byte_span
buf
)
{
ERR_clear_error
();
return
SSL_write
(
native
(
pimpl_
),
buf
.
data
(),
static_cast
<
int
>
(
buf
.
size
()));
return
SSL_write
(
native
(
pimpl_
),
buf
.
data
(),
static_cast
<
int
>
(
buf
.
size
()));
}
}
...
...
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