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
098a4343
Commit
098a4343
authored
Jun 29, 2016
by
Dominik Charousset
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add missing SEC error code
parent
2252770f
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
2 deletions
+5
-2
libcaf_core/caf/sec.hpp
libcaf_core/caf/sec.hpp
+4
-2
libcaf_core/src/sec.cpp
libcaf_core/src/sec.cpp
+1
-0
No files found.
libcaf_core/caf/sec.hpp
View file @
098a4343
...
@@ -19,7 +19,7 @@
...
@@ -19,7 +19,7 @@
// This file is partially included in the manual, do not modify
// This file is partially included in the manual, do not modify
// without updating the references in the *.tex files!
// without updating the references in the *.tex files!
// Manual references: lines 3
1-81
(Error.tex)
// Manual references: lines 3
2-84
(Error.tex)
#ifndef CAF_SEC_HPP
#ifndef CAF_SEC_HPP
#define CAF_SEC_HPP
#define CAF_SEC_HPP
...
@@ -59,8 +59,10 @@ enum class sec : uint8_t {
...
@@ -59,8 +59,10 @@ enum class sec : uint8_t {
cannot_forward_to_invalid_actor
,
cannot_forward_to_invalid_actor
,
/// Tried to forward a message via BASP to an unknown node ID.
/// Tried to forward a message via BASP to an unknown node ID.
no_route_to_receiving_node
,
no_route_to_receiving_node
,
/// Middleman could not assign a connect
ed
handle to a broker.
/// Middleman could not assign a connect
ion
handle to a broker.
failed_to_assign_scribe_from_handle
,
failed_to_assign_scribe_from_handle
,
/// Middleman could not assign an acceptor handle to a broker.
failed_to_assign_doorman_from_handle
,
/// User requested to close port 0 or to close a port not managed by CAF.
/// User requested to close port 0 or to close a port not managed by CAF.
cannot_close_invalid_port
,
cannot_close_invalid_port
,
/// Middleman could not connect to a remote node.
/// Middleman could not connect to a remote node.
...
...
libcaf_core/src/sec.cpp
View file @
098a4343
...
@@ -39,6 +39,7 @@ const char* sec_strings[] = {
...
@@ -39,6 +39,7 @@ const char* sec_strings[] = {
"cannot_forward_to_invalid_actor"
,
"cannot_forward_to_invalid_actor"
,
"no_route_to_receiving_node"
,
"no_route_to_receiving_node"
,
"failed_to_assign_scribe_from_handle"
,
"failed_to_assign_scribe_from_handle"
,
"failed_to_assign_doorman_from_handle"
,
"cannot_close_invalid_port"
,
"cannot_close_invalid_port"
,
"cannot_connect_to_node"
,
"cannot_connect_to_node"
,
"cannot_open_port"
,
"cannot_open_port"
,
...
...
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