Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
cs
ds
socket2
Commits
bb9a27ed
Commit
bb9a27ed
authored
Mar 28, 2022
by
Graziano Scalamera
Browse files
Handle EHOSTUNREACH error
parent
ed75bef6
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/Socket2.cpp
View file @
bb9a27ed
...
...
@@ -531,7 +531,7 @@ void Socket2::write(const Tango::DevVarCharArray *argin)
continue
;
}
if
(
errno
==
ECONNREFUSED
)
if
(
errno
==
ECONNREFUSED
||
errno
==
EHOSTUNREACH
)
{
delete
argin_data
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment