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
Commits
18270fec
Commit
18270fec
authored
1 year ago
by
Alessio Igor Bogani
Browse files
Options
Downloads
Patches
Plain Diff
Add a check for port number and consolidate ones for timeout
parent
83bd20a1
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/Socket2.cpp
+12
-37
12 additions, 37 deletions
src/Socket2.cpp
src/Socket2.h
+2
-0
2 additions, 0 deletions
src/Socket2.h
with
14 additions
and
37 deletions
src/Socket2.cpp
+
12
−
37
View file @
18270fec
...
...
@@ -316,9 +316,7 @@ void Socket2::get_device_property()
{
proto
=
UDP
;
DEBUG_STREAM
<<
"Using UDP protocol"
<<
endl
;
}
else
{
}
else
{
proto
=
TCP
;
DEBUG_STREAM
<<
"Using TCP protocol"
<<
endl
;
}
...
...
@@ -328,13 +326,13 @@ void Socket2::get_device_property()
{
multiplexing
=
SLEEP
;
DEBUG_STREAM
<<
"Using sleep IO multiplexing type"
<<
endl
;
}
else
{
}
else
{
multiplexing
=
SELECT
;
DEBUG_STREAM
<<
"Using select IO multiplexing type"
<<
endl
;
}
if
(
port
>
0xFFFF
)
init_error
=
"Invalit port number"
;
/*----- PROTECTED REGION END -----*/
// Socket2::get_device_property_after
}
//--------------------------------------------------------
...
...
@@ -388,9 +386,16 @@ void Socket2::always_executed_hook()
{
set_state
(
Tango
::
FAULT
);
set_status
(
init_error
);
return
;
}
else
tout
.
tv_sec
=
timeout
/
1000
;
tout
.
tv_usec
=
timeout
%
1000
*
1000
;
if
(
!
timerisset
(
&
tout
)
)
{
set_state
(
Tango
::
FAULT
);
set_status
(
"Invalid timeout"
);
}
else
{
check_connection
(
);
}
...
...
@@ -501,16 +506,6 @@ void Socket2::write(const Tango::DevVarCharArray *argin)
/*----- PROTECTED REGION ID(Socket2::write) ENABLED START -----*/
check_init
();
timeval
tout
;
tout
.
tv_sec
=
timeout
/
1000
;
tout
.
tv_usec
=
timeout
%
1000
*
1000
;
if
(
!
timerisset
(
&
tout
)
)
{
Tango
::
Except
::
throw_exception
(
""
,
"Invalid timeout"
,
"Socket2::write()"
);
}
char
*
argin_data
=
new
char
[
argin
->
length
()
];
for
(
unsigned
int
i
=
0
;
i
<
argin
->
length
();
++
i
)
{
...
...
@@ -622,16 +617,6 @@ Tango::DevVarCharArray *Socket2::read(Tango::DevLong argin)
/*----- PROTECTED REGION ID(Socket2::read) ENABLED START -----*/
check_init
();
timeval
tout
;
tout
.
tv_sec
=
timeout
/
1000
;
tout
.
tv_usec
=
timeout
%
1000
*
1000
;
if
(
!
timerisset
(
&
tout
)
)
{
Tango
::
Except
::
throw_exception
(
""
,
"Invalid timeout"
,
"Socket2::read()"
);
}
if
(
argin
<
0
)
{
Tango
::
Except
::
throw_exception
(
""
,
...
...
@@ -677,16 +662,6 @@ Tango::DevVarCharArray *Socket2::read_until(const Tango::DevVarCharArray *argin)
/*----- PROTECTED REGION ID(Socket2::read_until) ENABLED START -----*/
check_init
();
timeval
tout
;
tout
.
tv_sec
=
timeout
/
1000
;
tout
.
tv_usec
=
timeout
%
1000
*
1000
;
if
(
!
timerisset
(
&
tout
)
)
{
Tango
::
Except
::
throw_exception
(
""
,
"Invalid timeout"
,
"Socket2::read_until()"
);
}
if
(
argin
->
length
()
!=
1
)
{
Tango
::
Except
::
throw_exception
(
""
,
...
...
This diff is collapsed.
Click to expand it.
src/Socket2.h
+
2
−
0
View file @
18270fec
...
...
@@ -97,6 +97,8 @@ class Socket2 : public TANGO_BASE_CLASS
enum
{
SLEEP
,
SELECT
}
multiplexing
;
timeval
tout
;
/*----- PROTECTED REGION END -----*/
// Socket2::Data Members
// Device property data members
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment