diff options
author | Michael Vogt <michael.vogt@ubuntu.com> | 2010-05-04 10:02:15 +0200 |
---|---|---|
committer | Michael Vogt <michael.vogt@ubuntu.com> | 2010-05-04 10:02:15 +0200 |
commit | 549edd163e34a50091623b47881f2eefbdc53aca (patch) | |
tree | ec46425ae005e8e426727ab896e7614df06aced6 /methods | |
parent | 259f688a29728604d7930662e9743619982706ab (diff) | |
parent | 52d9d000a74ea71edff93f00ae38aceb9ada53d4 (diff) |
merged from the debian-sid branch
Diffstat (limited to 'methods')
-rw-r--r-- | methods/connect.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/methods/connect.cc b/methods/connect.cc index adb16a199..2f6b4833e 100644 --- a/methods/connect.cc +++ b/methods/connect.cc @@ -116,6 +116,9 @@ static bool DoConnect(struct addrinfo *Addr,string Host, errno = Err; if(errno == ECONNREFUSED) Owner->SetFailExtraMsg("\nFailReason: ConnectionRefused"); + else if (errno == ETIMEDOUT) + Owner->SetFailExtraMsg("\nFailReason: ConnectionTimedOut"); + bad_addr.insert(bad_addr.begin(), string(Name)); return _error->Errno("connect",_("Could not connect to %s:%s (%s)."),Host.c_str(), Service,Name); } |