Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(31)

Unified Diff: src/pkg/net/fd_windows.go

Issue 12416043: code review 12416043: net: implement TCP connection setup with fast failover (Closed)
Patch Set: diff -r 22365bd87858 https://code.google.com/p/go Created 11 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/pkg/net/fd_unix.go ('k') | src/pkg/net/mockserver_test.go » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/pkg/net/fd_windows.go
===================================================================
--- a/src/pkg/net/fd_windows.go
+++ b/src/pkg/net/fd_windows.go
@@ -83,17 +83,13 @@
return syscall.LoadConnectEx() == nil
}
-func resolveAndDial(net, addr string, localAddr Addr, deadline time.Time) (Conn, error) {
+func dial(net string, ra Addr, dialer func(time.Time) (Conn, error), deadline time.Time) (Conn, error) {
if !canUseConnectEx(net) {
// Use the relatively inefficient goroutine-racing
// implementation of DialTimeout.
- return resolveAndDialChannel(net, addr, localAddr, deadline)
+ return dialChannel(net, ra, dialer, deadline)
}
- ra, err := resolveAddr("dial", net, addr, deadline)
- if err != nil {
- return nil, &OpError{Op: "dial", Net: net, Addr: nil, Err: err}
- }
- return dial(net, addr, localAddr, ra.toAddr(), deadline)
+ return dialer(deadline)
}
// operation contains superset of data necessary to perform all async IO.
« no previous file with comments | « src/pkg/net/fd_unix.go ('k') | src/pkg/net/mockserver_test.go » ('j') | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b