Skip to content

Commit

Permalink
Fixed type in registration_timeout.
Browse files Browse the repository at this point in the history
  • Loading branch information
Peguen committed Nov 28, 2024
1 parent 99c8a25 commit bebf5b6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ namespace eCAL
attributes.network_enabled = reg_config_.network_enabled;
attributes.loopback = reg_config_.loopback;
attributes.drop_out_of_order_messages = sub_config_.drop_out_of_order_messages;
attributes.registation_timeout_ms = reg_config_.registration_timeout;
attributes.registration_timeout_ms = reg_config_.registration_timeout;
attributes.topic_name = topic_name_;
attributes.host_name = Process::GetHostName();
attributes.host_group_name = Process::GetHostGroupName();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ namespace eCAL
bool network_enabled;
bool drop_out_of_order_messages;
bool loopback;
unsigned int registation_timeout_ms;
unsigned int registration_timeout_ms;

SUDPAttributes udp;
STCPAttributes tcp;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ namespace eCAL
SHM::SAttributes attributes;

attributes.process_id = attr_.process_id;
attributes.registration_timeout_ms = attr_.registation_timeout_ms;
attributes.registration_timeout_ms = attr_.registration_timeout_ms;

return attributes;
}
Expand Down

0 comments on commit bebf5b6

Please sign in to comment.