Author: jgg
Date: 1999-01-30 08:23:49 GMT
Retry http fixes
// -*- mode: cpp; mode: fold -*-
// Description /*{{{*/
-// $Id: http.cc,v 1.23 1999/01/28 06:32:31 jgg Exp $
+// $Id: http.cc,v 1.24 1999/01/30 08:23:49 jgg Exp $
/* ######################################################################
HTTP Aquire Method - This is the HTTP aquire method for APT.
{
if (FailCounter >= 2)
{
- Fail("Massive Server Brain Damage");
+ Fail("Massive Server Brain Damage",true);
FailCounter = 0;
}
// Connnect to the host
if (Server->Open() == false)
{
- Fail();
+ Fail(true);
delete Server;
Server = 0;
continue;
case 2:
{
_error->Error("Bad header Data");
- Fail();
+ Fail(true);
continue;
}