diff options
author | Michael Vogt <michael.vogt@ubuntu.com> | 2009-12-14 09:22:29 +0100 |
---|---|---|
committer | Michael Vogt <michael.vogt@ubuntu.com> | 2009-12-14 09:22:29 +0100 |
commit | 4407a02f4ead0c8c7906ba2fa96021890237f7d9 (patch) | |
tree | 6fa68d5510b537a28cdb677298a8f4e8d1fb42a6 /methods/connect.cc | |
parent | d4d9f5399244f5c7e698cc4860d1d9ab8f63992f (diff) | |
parent | 5d70f74c114450f001d415eea101610eedaee05b (diff) |
merged patches from david (many thanks)
Diffstat (limited to 'methods/connect.cc')
-rw-r--r-- | methods/connect.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/methods/connect.cc b/methods/connect.cc index 74e670ebd..adb16a199 100644 --- a/methods/connect.cc +++ b/methods/connect.cc @@ -158,6 +158,7 @@ bool Connect(string Host,int Port,const char *Service,int DefPort,int &Fd, struct addrinfo Hints; memset(&Hints,0,sizeof(Hints)); Hints.ai_socktype = SOCK_STREAM; + Hints.ai_flags = AI_ADDRCONFIG; Hints.ai_protocol = 0; // if we couldn't resolve the host before, we don't try now |