Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
actor-incubator
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
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-incubator
Commits
515fbc75
Commit
515fbc75
authored
May 09, 2020
by
Jakob Otto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Cleanup unused includes
parent
ac6ed000
Changes
13
Show whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
6 additions
and
27 deletions
+6
-27
libcaf_bb/caf/bb/stream_reader.hpp
libcaf_bb/caf/bb/stream_reader.hpp
+0
-1
libcaf_bb/caf/policy/tokenized_integer_reader.hpp
libcaf_bb/caf/policy/tokenized_integer_reader.hpp
+0
-1
libcaf_net/caf/net/doorman.hpp
libcaf_net/caf/net/doorman.hpp
+3
-6
libcaf_net/caf/net/endpoint_manager.hpp
libcaf_net/caf/net/endpoint_manager.hpp
+0
-1
libcaf_net/caf/net/packet_writer.hpp
libcaf_net/caf/net/packet_writer.hpp
+0
-1
libcaf_net/src/application.cpp
libcaf_net/src/application.cpp
+0
-1
libcaf_net/src/endpoint_manager.cpp
libcaf_net/src/endpoint_manager.cpp
+0
-1
libcaf_net/src/ip.cpp
libcaf_net/src/ip.cpp
+2
-7
libcaf_net/test/application.cpp
libcaf_net/test/application.cpp
+0
-1
libcaf_net/test/endpoint_manager.cpp
libcaf_net/test/endpoint_manager.cpp
+0
-1
libcaf_net/test/multiplexer.cpp
libcaf_net/test/multiplexer.cpp
+0
-1
libcaf_net/test/stream_application.cpp
libcaf_net/test/stream_application.cpp
+0
-1
libcaf_net/test/string_application.cpp
libcaf_net/test/string_application.cpp
+1
-4
No files found.
libcaf_bb/caf/bb/stream_reader.hpp
View file @
515fbc75
...
...
@@ -19,7 +19,6 @@
#pragma once
#include <string>
#include <vector>
#include "caf/attach_stream_source.hpp"
#include "caf/behavior.hpp"
...
...
libcaf_bb/caf/policy/tokenized_integer_reader.hpp
View file @
515fbc75
...
...
@@ -21,7 +21,6 @@
#include <cstdint>
#include <limits>
#include <string>
#include <vector>
#include "caf/behavior.hpp"
#include "caf/event_based_actor.hpp"
...
...
libcaf_net/caf/net/doorman.hpp
View file @
515fbc75
...
...
@@ -18,8 +18,6 @@
#pragma once
#include <vector>
#include "caf/logger.hpp"
#include "caf/net/make_endpoint_manager.hpp"
#include "caf/net/socket.hpp"
...
...
@@ -77,10 +75,9 @@ public:
CAF_LOG_DEBUG
(
"unable to get multiplexer from parent"
);
return
false
;
}
auto
child
=
make_endpoint_manager
(
mpx
,
parent
.
system
(),
stream_transport
<
application_type
>
{
*
x
,
factory_
.
make
()});
auto
child
=
make_endpoint_manager
(
mpx
,
parent
.
system
(),
stream_transport
<
application_type
>
{
*
x
,
factory_
.
make
()});
if
(
auto
err
=
child
->
init
())
return
false
;
return
true
;
...
...
libcaf_net/caf/net/endpoint_manager.hpp
View file @
515fbc75
...
...
@@ -24,7 +24,6 @@
#include "caf/actor.hpp"
#include "caf/actor_clock.hpp"
#include "caf/byte.hpp"
#include "caf/detail/net_export.hpp"
#include "caf/fwd.hpp"
#include "caf/intrusive/drr_queue.hpp"
...
...
libcaf_net/caf/net/packet_writer.hpp
View file @
515fbc75
...
...
@@ -18,7 +18,6 @@
#pragma once
#include "caf/byte.hpp"
#include "caf/detail/net_export.hpp"
#include "caf/net/fwd.hpp"
#include "caf/span.hpp"
...
...
libcaf_net/src/application.cpp
View file @
515fbc75
...
...
@@ -24,7 +24,6 @@
#include "caf/actor_system_config.hpp"
#include "caf/binary_deserializer.hpp"
#include "caf/binary_serializer.hpp"
#include "caf/byte.hpp"
#include "caf/defaults.hpp"
#include "caf/detail/network_order.hpp"
#include "caf/detail/parse.hpp"
...
...
libcaf_net/src/endpoint_manager.cpp
View file @
515fbc75
...
...
@@ -18,7 +18,6 @@
#include "caf/net/endpoint_manager.hpp"
#include "caf/byte.hpp"
#include "caf/intrusive/inbox_result.hpp"
#include "caf/net/multiplexer.hpp"
#include "caf/sec.hpp"
...
...
libcaf_net/src/ip.cpp
View file @
515fbc75
...
...
@@ -50,10 +50,6 @@
# define HOST_NAME_MAX 255
#endif
using
std
::
pair
;
using
std
::
string
;
using
std
::
vector
;
namespace
caf
::
net
::
ip
{
namespace
{
...
...
@@ -91,9 +87,8 @@ void for_each_adapter(F f, bool is_link_local = false) {
CAF_LOG_ERROR
(
"failed to get adapter addresses buffer length"
);
return
;
}
auto
adapters
=
adapters_ptr
{
reinterpret_cast
<
IP_ADAPTER_ADDRESSES
*>
(
::
malloc
(
len
)),
free
};
auto
adapters
=
adapters_ptr
{
reinterpret_cast
<
IP_ADAPTER_ADDRESSES
*>
(
::
malloc
(
len
)),
free
};
if
(
!
adapters
)
{
CAF_LOG_ERROR
(
"malloc failed"
);
return
;
...
...
libcaf_net/test/application.cpp
View file @
515fbc75
...
...
@@ -24,7 +24,6 @@
#include <vector>
#include "caf/byte.hpp"
#include "caf/forwarding_actor_proxy.hpp"
#include "caf/net/basp/connection_state.hpp"
#include "caf/net/basp/constants.hpp"
...
...
libcaf_net/test/endpoint_manager.cpp
View file @
515fbc75
...
...
@@ -25,7 +25,6 @@
#include "caf/binary_deserializer.hpp"
#include "caf/binary_serializer.hpp"
#include "caf/byte.hpp"
#include "caf/detail/scope_guard.hpp"
#include "caf/make_actor.hpp"
#include "caf/net/actor_proxy_impl.hpp"
...
...
libcaf_net/test/multiplexer.cpp
View file @
515fbc75
...
...
@@ -25,7 +25,6 @@
#include <new>
#include <tuple>
#include <vector>
#include "caf/byte.hpp"
#include "caf/net/socket_manager.hpp"
...
...
libcaf_net/test/stream_application.cpp
View file @
515fbc75
...
...
@@ -25,7 +25,6 @@
#include <vector>
#include "caf/byte.hpp"
#include "caf/net/backend/test.hpp"
#include "caf/net/basp/connection_state.hpp"
#include "caf/net/basp/constants.hpp"
...
...
libcaf_net/test/string_application.cpp
View file @
515fbc75
...
...
@@ -23,8 +23,6 @@
#include "caf/net/test/host_fixture.hpp"
#include "caf/test/dsl.hpp"
#include <vector>
#include "caf/binary_deserializer.hpp"
#include "caf/binary_serializer.hpp"
#include "caf/byte.hpp"
...
...
@@ -75,8 +73,7 @@ class string_application {
public:
using
header_type
=
string_application_header
;
string_application
(
byte_buffer_ptr
buf
)
:
buf_
(
std
::
move
(
buf
))
{
string_application
(
byte_buffer_ptr
buf
)
:
buf_
(
std
::
move
(
buf
))
{
// nop
}
...
...
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