Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ISC Open Source Projects
BIND
Commits
3c11f3ea
Commit
3c11f3ea
authored
Jul 30, 2019
by
Mark Andrews
Browse files
Merge branch '1133-your-problem-or-cygwin-s-v9_14' into 'v9_14'
Resolve "Your problem or Cygwin's ?????" See merge request
!2211
parents
ef63765c
2b5237c3
Pipeline
#18605
passed with stages
in 59 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
3c11f3ea
5269. [port] cygwin: can return ETIMEDOUT on connect() with a
non-blocking socket. [GL #1133]
5268. [bug] named could crash during configuration if
configured to use "geoip continent" ACLs with
legacy GeoIP. [GL #1163]
...
...
lib/isc/unix/socket.c
View file @
3c11f3ea
...
...
@@ -4846,6 +4846,7 @@ isc_socket_connect(isc_socket_t *sock0, const isc_sockaddr_t *addr,
ERROR_MATCH
(
ENOBUFS
,
ISC_R_NORESOURCES
);
ERROR_MATCH
(
EPERM
,
ISC_R_HOSTUNREACH
);
ERROR_MATCH
(
EPIPE
,
ISC_R_NOTCONNECTED
);
ERROR_MATCH
(
ETIMEDOUT
,
ISC_R_TIMEDOUT
);
ERROR_MATCH
(
ECONNRESET
,
ISC_R_CONNECTIONRESET
);
#undef ERROR_MATCH
}
...
...
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