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
455d1ec5
Commit
455d1ec5
authored
Mar 27, 2023
by
Dominik Charousset
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix build issues on CI
parent
db0db507
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
2 deletions
+3
-2
libcaf_net/src/net/http/v1.cpp
libcaf_net/src/net/http/v1.cpp
+1
-0
libcaf_net/src/net/octet_stream/transport.cpp
libcaf_net/src/net/octet_stream/transport.cpp
+1
-1
libcaf_net/src/net/web_socket/client.cpp
libcaf_net/src/net/web_socket/client.cpp
+1
-1
No files found.
libcaf_net/src/net/http/v1.cpp
View file @
455d1ec5
#include "caf/net/http/v1.hpp"
#include <algorithm>
#include <array>
#include <cstddef>
#include <string_view>
...
...
libcaf_net/src/net/octet_stream/transport.cpp
View file @
455d1ec5
...
...
@@ -195,7 +195,7 @@ void transport::handle_buffered_data() {
// Loop until we have drained the buffer as much as we can.
CAF_ASSERT
(
min_read_size_
<=
max_read_size_
);
auto
switch_to_next_protocol
=
[
this
]
{
assert
(
next_
);
CAF_ASSERT
(
next_
);
// Switch to the new protocol and initialize it.
configure_read
(
receive_policy
::
stop
());
up_
.
reset
(
next_
.
release
());
...
...
libcaf_net/src/net/web_socket/client.cpp
View file @
455d1ec5
...
...
@@ -46,7 +46,7 @@ error client::start(octet_stream::lower_layer* down) {
}
void
client
::
abort
(
const
error
&
reason
)
{
assert
(
up_
);
CAF_ASSERT
(
up_
);
up_
->
abort
(
reason
);
}
...
...
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