Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Synchronet
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
143
Issues
143
List
Boards
Labels
Service Desk
Milestones
Merge Requests
4
Merge Requests
4
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Packages & Registries
Packages & Registries
Package Registry
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Main
Synchronet
Compare Revisions
65c4e767c74112b6fdcaf771ffef8c7f7c8250a0...93c9d7e0bf770a5a3b626ec41825abf9bb9d4d3b
Source
93c9d7e0bf770a5a3b626ec41825abf9bb9d4d3b
Select Git revision
...
Target
65c4e767c74112b6fdcaf771ffef8c7f7c8250a0
Select Git revision
Compare
Commits (1)
Log the error on first-byte recv() timeout.
· 93c9d7e0
Deuce
authored
Dec 28, 2020
93c9d7e0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
exec/load/binkp.js
exec/load/binkp.js
+1
-1
No files found.
exec/load/binkp.js
View file @
93c9d7e0
...
...
@@ -1058,7 +1058,7 @@ BinkP.prototype.recvFrame = function(timeout)
ret
=
new
this
.
Frame
();
i
=
this
.
sock
.
recv
(
1
,
timeout
);
if
(
i
===
null
)
{
log
(
LOG_INFO
,
"
Error in recv() of first byte of packet header, timeout =
"
+
timeout
);
log
(
LOG_INFO
,
"
Error
"
+
this
.
sock
.
error
+
"
(
"
+
this
.
sock
.
error_str
+
"
)
in recv() of first byte of packet header, timeout =
"
+
timeout
);
this
.
sock
.
close
();
this
.
sock
=
undefined
;
return
undefined
;
...
...