Commit 66e1ca2b authored by Joseph Noir's avatar Joseph Noir

Add error message for unknown scheme

parent 30fe093d
......@@ -199,6 +199,10 @@ public:
);
} else {
// sec::unsupported_protocol;
CAF_LOG_ERROR("unsupported protocol" << CAF_ARG(u));
std::cerr << "[MMA] Unsupported protocol '" << to_string(u.scheme())
<< "'" << std::endl;
rp.deliver(sec::unsupported_protocol);
}
return {};
},
......
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