webfs/httpc.: increase dial timeout to 10 seconds, response timeout to 20 seconds

front
stanley lieber 2012-05-03 12:31:09 -05:00
parent 30b2154e75
commit 3ce608921a
1 changed files with 4 additions and 4 deletions

View File

@ -542,9 +542,9 @@ http(char *m, Url *u, Key *shdr, Buq *qbody, Buq *qpost)
qunlock(qpost); qunlock(qpost);
} }
/* give 5 seconds to dial */ /* give 10 seconds to dial */
if(h == nil){ if(h == nil){
alarm(5000); alarm(10000);
if((h = hdial(proxy ? proxy : u)) == nil) if((h = hdial(proxy ? proxy : u)) == nil)
break; break;
} }
@ -620,8 +620,8 @@ http(char *m, Url *u, Key *shdr, Buq *qbody, Buq *qpost)
/* no timeout when posting */ /* no timeout when posting */
alarm(0); alarm(0);
} else { } else {
/* wait 10 seconds for the response */ /* wait 20 seconds for the response */
alarm(10000); alarm(20000);
} }
Cont: Cont: