summaryrefslogtreecommitdiff
path: root/methods/basehttp.cc
diff options
context:
space:
mode:
authorJulian Andres Klode <jak@debian.org>2018-05-24 13:54:27 +0000
committerJulian Andres Klode <jak@debian.org>2018-05-24 13:54:27 +0000
commit9b0319db37c97cfb2a018b6af97019efba4562ab (patch)
tree4dd7778d05b65b30f5c9d0c5d8dc142f7d9926ba /methods/basehttp.cc
parent6eaeec549241677335813af78f394010e5b3eefb (diff)
parent329a4a6159f1972ff5ec7bc2db26430f26dc61f3 (diff)
Merge branch 'pu/timeout-bad-addr-fixes' into 'master'
Pu/timeout bad addr fixes See merge request apt-team/apt!18
Diffstat (limited to 'methods/basehttp.cc')
-rw-r--r--methods/basehttp.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/methods/basehttp.cc b/methods/basehttp.cc
index 3a73d04c6..3d95ba7df 100644
--- a/methods/basehttp.cc
+++ b/methods/basehttp.cc
@@ -250,7 +250,7 @@ bool RequestState::HeaderLine(string const &Line) /*{{{*/
/*}}}*/
// ServerState::ServerState - Constructor /*{{{*/
ServerState::ServerState(URI Srv, BaseHttpMethod *Owner) :
- ServerName(Srv), TimeOut(120), Owner(Owner)
+ ServerName(Srv), TimeOut(30), Owner(Owner)
{
Reset();
}