aboutsummaryrefslogtreecommitdiffstats
path: root/Godeps/_workspace
diff options
context:
space:
mode:
authorJeffrey Wilcke <jeffrey@ethereum.org>2015-06-05 06:55:39 +0800
committerJeffrey Wilcke <jeffrey@ethereum.org>2015-06-05 06:55:39 +0800
commit067e66b34869402cf7bd0f352dad37bd4200e976 (patch)
tree6576ad0110b364685dfd3ef71b3e8019226c35e8 /Godeps/_workspace
parent8b4605c336568065ea1d2fa1298c3a8489f9bf9e (diff)
parentfc6a5ae3ec7990d5c78649b0af46c46f31b88040 (diff)
downloaddexon-067e66b34869402cf7bd0f352dad37bd4200e976.tar
dexon-067e66b34869402cf7bd0f352dad37bd4200e976.tar.gz
dexon-067e66b34869402cf7bd0f352dad37bd4200e976.tar.bz2
dexon-067e66b34869402cf7bd0f352dad37bd4200e976.tar.lz
dexon-067e66b34869402cf7bd0f352dad37bd4200e976.tar.xz
dexon-067e66b34869402cf7bd0f352dad37bd4200e976.tar.zst
dexon-067e66b34869402cf7bd0f352dad37bd4200e976.zip
Merge pull request #1185 from fjl/p2p-nat-timeouts
p2p/nat: request timeouts for UPnP discovery
Diffstat (limited to 'Godeps/_workspace')
-rw-r--r--Godeps/_workspace/src/github.com/huin/goupnp/goupnp.go9
1 files changed, 6 insertions, 3 deletions
diff --git a/Godeps/_workspace/src/github.com/huin/goupnp/goupnp.go b/Godeps/_workspace/src/github.com/huin/goupnp/goupnp.go
index 8cd20c2f4..7799a32ce 100644
--- a/Godeps/_workspace/src/github.com/huin/goupnp/goupnp.go
+++ b/Godeps/_workspace/src/github.com/huin/goupnp/goupnp.go
@@ -19,7 +19,7 @@ import (
"fmt"
"net/http"
"net/url"
-
+ "time"
"golang.org/x/net/html/charset"
"github.com/huin/goupnp/httpu"
@@ -64,7 +64,6 @@ func DiscoverDevices(searchTarget string) ([]MaybeRootDevice, error) {
maybe := &results[i]
loc, err := response.Location()
if err != nil {
-
maybe.Err = ContextError{"unexpected bad location from search", err}
continue
}
@@ -93,7 +92,11 @@ func DiscoverDevices(searchTarget string) ([]MaybeRootDevice, error) {
}
func requestXml(url string, defaultSpace string, doc interface{}) error {
- resp, err := http.Get(url)
+ timeout := time.Duration(3 * time.Second)
+ client := http.Client{
+ Timeout: timeout,
+ }
+ resp, err := client.Get(url)
if err != nil {
return err
}