Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
socket2
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cs
ds
socket2
Compare revisions
ed75bef6f9cb2d4761916ec41873b96cf2af95d3 to bb9a27ed07c1e55b56da991632dd913bc58b953e
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
cs/ds/socket2
Select target project
No results found
bb9a27ed07c1e55b56da991632dd913bc58b953e
Select Git revision
Swap
Target
cs/ds/socket2
Select target project
cs/ds/socket2
1 result
ed75bef6f9cb2d4761916ec41873b96cf2af95d3
Select Git revision
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (1)
Handle EHOSTUNREACH error
· bb9a27ed
Graziano Scalamera
authored
3 years ago
bb9a27ed
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/Socket2.cpp
+1
-1
1 addition, 1 deletion
src/Socket2.cpp
with
1 addition
and
1 deletion
src/Socket2.cpp
View file @
bb9a27ed
...
@@ -531,7 +531,7 @@ void Socket2::write(const Tango::DevVarCharArray *argin)
...
@@ -531,7 +531,7 @@ void Socket2::write(const Tango::DevVarCharArray *argin)
continue
;
continue
;
}
}
if
(
errno
==
ECONNREFUSED
)
if
(
errno
==
ECONNREFUSED
||
errno
==
EHOSTUNREACH
)
{
{
delete
argin_data
;
delete
argin_data
;
...
...
This diff is collapsed.
Click to expand it.