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
cc6c6c71
Commit
cc6c6c71
authored
May 10, 2020
by
Jakob Otto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add missing includes
parent
9d0e487b
Changes
20
Show whitespace changes
Inline
Side-by-side
Showing
20 changed files
with
21 additions
and
0 deletions
+21
-0
libcaf_net/caf/net/basp/application.hpp
libcaf_net/caf/net/basp/application.hpp
+1
-0
libcaf_net/caf/net/basp/worker.hpp
libcaf_net/caf/net/basp/worker.hpp
+1
-0
libcaf_net/caf/net/packet_writer_decorator.hpp
libcaf_net/caf/net/packet_writer_decorator.hpp
+2
-0
libcaf_net/src/application.cpp
libcaf_net/src/application.cpp
+1
-0
libcaf_net/src/header.cpp
libcaf_net/src/header.cpp
+1
-0
libcaf_net/src/udp_datagram_socket.cpp
libcaf_net/src/udp_datagram_socket.cpp
+1
-0
libcaf_net/test/application.cpp
libcaf_net/test/application.cpp
+1
-0
libcaf_net/test/datagram_transport.cpp
libcaf_net/test/datagram_transport.cpp
+1
-0
libcaf_net/test/endpoint_manager.cpp
libcaf_net/test/endpoint_manager.cpp
+1
-0
libcaf_net/test/header.cpp
libcaf_net/test/header.cpp
+1
-0
libcaf_net/test/multiplexer.cpp
libcaf_net/test/multiplexer.cpp
+1
-0
libcaf_net/test/net/basp/worker.cpp
libcaf_net/test/net/basp/worker.cpp
+1
-0
libcaf_net/test/pipe_socket.cpp
libcaf_net/test/pipe_socket.cpp
+1
-0
libcaf_net/test/stream_application.cpp
libcaf_net/test/stream_application.cpp
+1
-0
libcaf_net/test/stream_socket.cpp
libcaf_net/test/stream_socket.cpp
+1
-0
libcaf_net/test/stream_transport.cpp
libcaf_net/test/stream_transport.cpp
+1
-0
libcaf_net/test/string_application.cpp
libcaf_net/test/string_application.cpp
+1
-0
libcaf_net/test/transport_worker.cpp
libcaf_net/test/transport_worker.cpp
+1
-0
libcaf_net/test/transport_worker_dispatcher.cpp
libcaf_net/test/transport_worker_dispatcher.cpp
+1
-0
libcaf_net/test/udp_datagram_socket.cpp
libcaf_net/test/udp_datagram_socket.cpp
+1
-0
No files found.
libcaf_net/caf/net/basp/application.hpp
View file @
cc6c6c71
...
...
@@ -33,6 +33,7 @@
#include "caf/defaults.hpp"
#include "caf/detail/worker_hub.hpp"
#include "caf/error.hpp"
#include "caf/fwd.hpp"
#include "caf/net/basp/connection_state.hpp"
#include "caf/net/basp/constants.hpp"
#include "caf/net/basp/header.hpp"
...
...
libcaf_net/caf/net/basp/worker.hpp
View file @
cc6c6c71
...
...
@@ -24,6 +24,7 @@
#include "caf/config.hpp"
#include "caf/detail/abstract_worker.hpp"
#include "caf/detail/worker_hub.hpp"
#include "caf/fwd.hpp"
#include "caf/net/basp/header.hpp"
#include "caf/net/basp/message_queue.hpp"
#include "caf/net/basp/remote_message_handler.hpp"
...
...
libcaf_net/caf/net/packet_writer_decorator.hpp
View file @
cc6c6c71
...
...
@@ -20,6 +20,8 @@
#include "caf/net/packet_writer.hpp"
#include "caf/byte_buffer.hpp"
namespace
caf
::
net
{
/// Implements the interface for transport and application policies and
...
...
libcaf_net/src/application.cpp
View file @
cc6c6c71
...
...
@@ -24,6 +24,7 @@
#include "caf/actor_system_config.hpp"
#include "caf/binary_deserializer.hpp"
#include "caf/binary_serializer.hpp"
#include "caf/byte_buffer.hpp"
#include "caf/defaults.hpp"
#include "caf/detail/network_order.hpp"
#include "caf/detail/parse.hpp"
...
...
libcaf_net/src/header.cpp
View file @
cc6c6c71
...
...
@@ -21,6 +21,7 @@
#include <cstring>
#include "caf/byte.hpp"
#include "caf/byte_buffer.hpp"
#include "caf/detail/network_order.hpp"
#include "caf/span.hpp"
...
...
libcaf_net/src/udp_datagram_socket.cpp
View file @
cc6c6c71
...
...
@@ -19,6 +19,7 @@
#include "caf/net/udp_datagram_socket.hpp"
#include "caf/byte.hpp"
#include "caf/byte_buffer.hpp"
#include "caf/detail/convert_ip_endpoint.hpp"
#include "caf/detail/net_syscall.hpp"
#include "caf/detail/socket_sys_aliases.hpp"
...
...
libcaf_net/test/application.cpp
View file @
cc6c6c71
...
...
@@ -24,6 +24,7 @@
#include <vector>
#include "caf/byte_buffer.hpp"
#include "caf/forwarding_actor_proxy.hpp"
#include "caf/net/basp/connection_state.hpp"
#include "caf/net/basp/constants.hpp"
...
...
libcaf_net/test/datagram_transport.cpp
View file @
cc6c6c71
...
...
@@ -25,6 +25,7 @@
#include "caf/binary_serializer.hpp"
#include "caf/byte.hpp"
#include "caf/byte_buffer.hpp"
#include "caf/detail/socket_sys_includes.hpp"
#include "caf/make_actor.hpp"
#include "caf/net/actor_proxy_impl.hpp"
...
...
libcaf_net/test/endpoint_manager.cpp
View file @
cc6c6c71
...
...
@@ -25,6 +25,7 @@
#include "caf/binary_deserializer.hpp"
#include "caf/binary_serializer.hpp"
#include "caf/byte_buffer.hpp"
#include "caf/detail/scope_guard.hpp"
#include "caf/make_actor.hpp"
#include "caf/net/actor_proxy_impl.hpp"
...
...
libcaf_net/test/header.cpp
View file @
cc6c6c71
...
...
@@ -24,6 +24,7 @@
#include "caf/binary_deserializer.hpp"
#include "caf/binary_serializer.hpp"
#include "caf/byte_buffer.hpp"
using
namespace
caf
;
using
namespace
caf
::
net
;
...
...
libcaf_net/test/multiplexer.cpp
View file @
cc6c6c71
...
...
@@ -27,6 +27,7 @@
#include <tuple>
#include "caf/byte.hpp"
#include "caf/byte_buffer.hpp"
#include "caf/net/socket_manager.hpp"
#include "caf/net/stream_socket.hpp"
#include "caf/span.hpp"
...
...
libcaf_net/test/net/basp/worker.cpp
View file @
cc6c6c71
...
...
@@ -26,6 +26,7 @@
#include "caf/actor_control_block.hpp"
#include "caf/actor_system.hpp"
#include "caf/binary_serializer.hpp"
#include "caf/byte_buffer.hpp"
#include "caf/make_actor.hpp"
#include "caf/net/basp/message_queue.hpp"
#include "caf/proxy_registry.hpp"
...
...
libcaf_net/test/pipe_socket.cpp
View file @
cc6c6c71
...
...
@@ -24,6 +24,7 @@
#include "caf/test/dsl.hpp"
#include "caf/byte.hpp"
#include "caf/byte_buffer.hpp"
using
namespace
caf
;
using
namespace
caf
::
net
;
...
...
libcaf_net/test/stream_application.cpp
View file @
cc6c6c71
...
...
@@ -25,6 +25,7 @@
#include <vector>
#include "caf/byte_buffer.hpp"
#include "caf/net/backend/test.hpp"
#include "caf/net/basp/connection_state.hpp"
#include "caf/net/basp/constants.hpp"
...
...
libcaf_net/test/stream_socket.cpp
View file @
cc6c6c71
...
...
@@ -24,6 +24,7 @@
#include "caf/test/dsl.hpp"
#include "caf/byte.hpp"
#include "caf/byte_buffer.hpp"
#include "caf/span.hpp"
using
namespace
caf
;
...
...
libcaf_net/test/stream_transport.cpp
View file @
cc6c6c71
...
...
@@ -26,6 +26,7 @@
#include "caf/binary_deserializer.hpp"
#include "caf/binary_serializer.hpp"
#include "caf/byte.hpp"
#include "caf/byte_buffer.hpp"
#include "caf/detail/scope_guard.hpp"
#include "caf/make_actor.hpp"
#include "caf/net/actor_proxy_impl.hpp"
...
...
libcaf_net/test/string_application.cpp
View file @
cc6c6c71
...
...
@@ -26,6 +26,7 @@
#include "caf/binary_deserializer.hpp"
#include "caf/binary_serializer.hpp"
#include "caf/byte.hpp"
#include "caf/byte_buffer.hpp"
#include "caf/detail/scope_guard.hpp"
#include "caf/make_actor.hpp"
#include "caf/net/actor_proxy_impl.hpp"
...
...
libcaf_net/test/transport_worker.cpp
View file @
cc6c6c71
...
...
@@ -25,6 +25,7 @@
#include "caf/binary_serializer.hpp"
#include "caf/byte.hpp"
#include "caf/byte_buffer.hpp"
#include "caf/detail/scope_guard.hpp"
#include "caf/ip_endpoint.hpp"
#include "caf/make_actor.hpp"
...
...
libcaf_net/test/transport_worker_dispatcher.cpp
View file @
cc6c6c71
...
...
@@ -23,6 +23,7 @@
#include "caf/net/test/host_fixture.hpp"
#include "caf/test/dsl.hpp"
#include "caf/byte_buffer.hpp"
#include "caf/ip_endpoint.hpp"
#include "caf/make_actor.hpp"
#include "caf/monitorable_actor.hpp"
...
...
libcaf_net/test/udp_datagram_socket.cpp
View file @
cc6c6c71
...
...
@@ -24,6 +24,7 @@
#include "caf/test/dsl.hpp"
#include "caf/binary_serializer.hpp"
#include "caf/byte_buffer.hpp"
#include "caf/detail/net_syscall.hpp"
#include "caf/detail/socket_sys_includes.hpp"
#include "caf/ip_address.hpp"
...
...
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