Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
git2
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
git2
Commits
14c820b1
Commit
14c820b1
authored
Apr 11, 2023
by
Edward Thomson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
win32: use WSAGetLastError to determine blocking
parent
03eebab8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
1 deletions
+14
-1
src/libgit2/streams/socket.c
+14
-1
No files found.
src/libgit2/streams/socket.c
View file @
14c820b1
...
...
@@ -114,6 +114,19 @@ static int handle_sockerr(GIT_SOCKET socket)
return
-
1
;
}
GIT_INLINE
(
bool
)
connect_would_block
(
int
error
)
{
#ifdef GIT_WIN32
if
(
error
==
SOCKET_ERROR
&&
WSAGetLastError
()
==
WSAEWOULDBLOCK
)
return
true
;
#endif
if
(
error
==
-
1
&&
errno
==
EINPROGRESS
)
return
true
;
return
false
;
}
static
int
connect_with_timeout
(
GIT_SOCKET
socket
,
const
struct
sockaddr
*
address
,
...
...
@@ -128,7 +141,7 @@ static int connect_with_timeout(
error
=
connect
(
socket
,
address
,
address_len
);
if
(
error
==
0
||
(
error
==
-
1
&&
errno
!=
EINPROGRESS
))
if
(
error
==
0
||
!
connect_would_block
(
error
))
return
error
;
fd
.
fd
=
socket
;
...
...
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