Commit d35be7ff authored by Dominik Charousset's avatar Dominik Charousset Committed by Dominik Charousset

Add open_stream_msg to the list of builtin types

parent ea9ffd8f
...@@ -116,6 +116,7 @@ struct timeout_msg; ...@@ -116,6 +116,7 @@ struct timeout_msg;
struct upstream_msg; struct upstream_msg;
struct group_down_msg; struct group_down_msg;
struct downstream_msg; struct downstream_msg;
struct open_stream_msg;
struct invalid_actor_t; struct invalid_actor_t;
struct invalid_actor_addr_t; struct invalid_actor_addr_t;
struct illegal_message_element; struct illegal_message_element;
......
...@@ -59,6 +59,7 @@ using sorted_builtin_types = ...@@ -59,6 +59,7 @@ using sorted_builtin_types =
message, // @message message, // @message
message_id, // @message_id message_id, // @message_id
node_id, // @node node_id, // @node
open_stream_msg, // @open_stream_msg
std::string, // @str std::string, // @str
std::map<std::string, std::string>, // @strmap std::map<std::string, std::string>, // @strmap
strong_actor_ptr, // @strong_actor_ptr strong_actor_ptr, // @strong_actor_ptr
......
...@@ -74,6 +74,7 @@ const char* numbered_type_names[] = { ...@@ -74,6 +74,7 @@ const char* numbered_type_names[] = {
"@message", "@message",
"@message_id", "@message_id",
"@node", "@node",
"@open_stream_msg",
"@str", "@str",
"@strmap", "@strmap",
"@strong_actor_ptr", "@strong_actor_ptr",
......
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