Commit c63020f6 authored by Dominik Charousset's avatar Dominik Charousset

Add remote_lookup_failed error code

parent 53284a6f
......@@ -124,6 +124,8 @@ enum class sec : uint8_t {
socket_operation_failed = 45,
/// A resource is temporarily unavailable or would block.
unavailable_or_would_block,
/// Resolving a path on a remote node failed.
remote_lookup_failed,
};
/// @relates sec
......
......@@ -72,6 +72,7 @@ const char* sec_strings[] = {
"socket_disconnected",
"socket_operation_failed",
"unavailable_or_would_block",
"remote_lookup_failed",
};
} // namespace <anonymous>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment