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
d034deb8
Commit
d034deb8
authored
Oct 31, 2016
by
Joseph Noir
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add error for unavailable transport protocol
parent
b7e99c51
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
+3
-1
libcaf_core/src/sec.cpp
libcaf_core/src/sec.cpp
+2
-1
No files found.
libcaf_core/caf/sec.hpp
View file @
d034deb8
...
...
@@ -91,7 +91,9 @@ enum class sec : uint8_t {
/// Linking to a remote actor failed because actor no longer exists.
remote_linking_failed
,
/// A function view was called without assigning an actor first.
bad_function_call
bad_function_call
,
/// The scheme for network communication does not match a transport protocol
unsupported_protocol
};
/// @relates sec
...
...
libcaf_core/src/sec.cpp
View file @
d034deb8
...
...
@@ -56,7 +56,8 @@ const char* sec_strings[] = {
"no_proxy_registry"
,
"runtime_error"
,
"remote_linking_failed"
,
"bad_function_call"
"bad_function_call"
,
"unsupported_protocol"
};
}
// namespace <anonymous>
...
...
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