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
65f49648
Commit
65f49648
authored
4 months ago
by
Alessio Igor Bogani
Browse files
Options
Downloads
Patches
Plain Diff
A little change
parent
e0487156
Branches
master
Tags
2.0.1
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/Socket2.cpp
+2
-1
2 additions, 1 deletion
src/Socket2.cpp
with
2 additions
and
1 deletion
src/Socket2.cpp
+
2
−
1
View file @
65f49648
...
...
@@ -770,6 +770,7 @@ void Socket2::_read(size_t bytes_to_read)
{
unsigned
char
buffer
[
10000
];
size_t
bytes_total
=
data
.
size
();
ssize_t
bytes_readed
;
while
(
bytes_total
<
bytes_to_read
)
{
int
s
=
select
(
READ
);
...
...
@@ -780,7 +781,7 @@ void Socket2::_read(size_t bytes_to_read)
else
{
/* s > 0 */
}
size_t
count
=
min
((
size_t
)
max
(
input_queue_length
(),
0
),
sizeof
(
buffer
));
ssize_t
bytes_readed
=
proto
==
UDP
?
bytes_readed
=
proto
==
UDP
?
::
recvfrom
(
fd
,
buffer
,
count
,
0
,
(
sockaddr
*
)
&
sa
,
&
sa_len
)
:
::
read
(
fd
,
buffer
,
count
);
...
...
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