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
bd962d17
Commit
bd962d17
authored
Mar 18, 2023
by
Dominik Charousset
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Improve doxygen comments
parent
85bee49f
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
11 additions
and
3 deletions
+11
-3
libcaf_net/caf/net/checked_socket.hpp
libcaf_net/caf/net/checked_socket.hpp
+2
-1
libcaf_net/caf/net/fwd.hpp
libcaf_net/caf/net/fwd.hpp
+7
-0
libcaf_net/caf/net/make_actor_shell.hpp
libcaf_net/caf/net/make_actor_shell.hpp
+1
-0
libcaf_net/caf/net/middleman.hpp
libcaf_net/caf/net/middleman.hpp
+1
-0
libcaf_net/caf/net/stream_oriented.hpp
libcaf_net/caf/net/stream_oriented.hpp
+0
-2
No files found.
libcaf_net/caf/net/checked_socket.hpp
View file @
bd962d17
...
...
@@ -11,7 +11,8 @@
namespace
caf
::
net
{
/// Lifts `Socket` to a `expected<Socket>` and sets an error if `fd` is invalid.
/// Lifts `Socket` to an `expected<Socket>` and sets an error if `fd` is
/// invalid.
template
<
class
Socket
>
expected
<
Socket
>
checked_socket
(
Socket
fd
)
{
using
res_t
=
expected
<
Socket
>
;
...
...
libcaf_net/caf/net/fwd.hpp
View file @
bd962d17
...
...
@@ -80,3 +80,10 @@ actor_shell_ptr_t<Handle>
make_actor_shell
(
actor_system
&
,
async
::
execution_context_ptr
);
}
// namespace caf::net
namespace
caf
::
net
::
stream_oriented
{
class
lower_layer
;
class
upper_layer
;
}
// namespace caf::net::stream_oriented
libcaf_net/caf/net/make_actor_shell.hpp
View file @
bd962d17
...
...
@@ -5,6 +5,7 @@
namespace
caf
::
net
{
/// Creates a new @ref actor_shell and registers it at the actor system.
template
<
class
Handle
>
actor_shell_ptr_t
<
Handle
>
make_actor_shell
(
actor_system
&
sys
,
async
::
execution_context_ptr
loop
)
{
...
...
libcaf_net/caf/net/middleman.hpp
View file @
bd962d17
...
...
@@ -20,6 +20,7 @@
namespace
caf
::
net
{
/// Provides a network backend for running protocol stacks.
class
CAF_NET_EXPORT
middleman
:
public
actor_system
::
module
{
public:
// -- member types -----------------------------------------------------------
...
...
libcaf_net/caf/net/stream_oriented.hpp
View file @
bd962d17
...
...
@@ -12,8 +12,6 @@
namespace
caf
::
net
::
stream_oriented
{
class
lower_layer
;
/// The upper layer requests bytes from the lower layer and consumes raw chunks
/// of data.
class
CAF_NET_EXPORT
upper_layer
:
public
generic_upper_layer
{
...
...
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