Skip to content
Snippets Groups Projects
Commit bb9a27ed authored by Graziano Scalamera's avatar Graziano Scalamera
Browse files

Handle EHOSTUNREACH error

parent ed75bef6
No related branches found
No related tags found
No related merge requests found
......@@ -531,7 +531,7 @@ void Socket2::write(const Tango::DevVarCharArray *argin)
continue;
}
if( errno == ECONNREFUSED )
if( errno == ECONNREFUSED || errno == EHOSTUNREACH)
{
delete argin_data;
......
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