diff options
author | Arch Librarian <arch@canonical.com> | 2004-09-20 16:53:01 +0000 |
---|---|---|
committer | Arch Librarian <arch@canonical.com> | 2004-09-20 16:53:01 +0000 |
commit | 30b30ec1c01acb6f128e3fc8eb74d978a287ae1a (patch) | |
tree | c53b6e36de83b3122cd055157faef6236ac78c02 /methods/http.cc | |
parent | f17ac0977167d1e58316d3b3f7159f65d40a090a (diff) |
First draft
Author: jgg
Date: 1999-03-15 06:00:59 GMT
First draft
Diffstat (limited to 'methods/http.cc')
-rw-r--r-- | methods/http.cc | 18 |
1 files changed, 5 insertions, 13 deletions
diff --git a/methods/http.cc b/methods/http.cc index 25035b58a..da15cec32 100644 --- a/methods/http.cc +++ b/methods/http.cc @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: http.cc,v 1.27 1999/02/27 22:29:11 jgg Exp $ +// $Id: http.cc,v 1.28 1999/03/15 06:01:00 jgg Exp $ /* ###################################################################### HTTP Aquire Method - This is the HTTP aquire method for APT. @@ -336,18 +336,10 @@ bool ServerState::Open() /* This implements a timeout for connect by opening the connection nonblocking */ - fd_set wfds; - FD_ZERO(&wfds); - FD_SET(ServerFd,&wfds); - struct timeval tv; - tv.tv_sec = TimeOut; - tv.tv_usec = 0; - int Res = 0; - if ((Res = select(ServerFd+1,0,&wfds,0,&tv)) < 0) - return _error->Errno("select","Select failed"); - if (Res == 0) + if (WaitFd(ServerFd,true,TimeOut) == false) return _error->Error("Could not connect, connection timed out"); - unsigned int Err,Len=sizeof(Err); + unsigned int Err; + unsigned int Len = sizeof(Err); if (getsockopt(ServerFd,SOL_SOCKET,SO_ERROR,&Err,&Len) != 0) return _error->Errno("getsockopt","Failed"); if (Err != 0) @@ -879,7 +871,7 @@ int HttpMethod::DealWithHeaders(FetchResult &Res,ServerState *Srv) return 5; FailFile = Queue->DestFile; - FailFile.c_str(); // Make sure we don't do a malloc in the signal handler + FailFile.c_str(); // Make sure we dont do a malloc in the signal handler FailFd = File->Fd(); FailTime = Srv->Date; |