1999-09-26
1999-09-26 02:39:42 by Martin Stjernholm <mast@lysator.liu.se>
-
943da92545356d3ab408a4d861a0091b044264e5
(11 lines)
(+7/-4)
[
Show
| Annotate
]
Branch: 5.2
Some fixes when running with REQUEST_DEBUG.
Rev: server/protocols/http.pike:1.154
1:
// This is a roxen module.
// Modified by Francesco Chemolli to add throttling capabilities.
// Copyright © 1996 - 1998, Idonex AB.
- // $Id: http.pike,v 1.153 1999/09/05 01:42:22 per Exp $
+ // $Id: http.pike,v 1.154 1999/09/26 02:39:42 mast Exp $
#define MAGIC_ERROR
#ifdef MAGIC_ERROR
inherit "highlight_pike";
#endif
- constant cvs_version = "$Id: http.pike,v 1.153 1999/09/05 01:42:22 per Exp $";
+ constant cvs_version = "$Id: http.pike,v 1.154 1999/09/26 02:39:42 mast Exp $";
// HTTP protocol module.
#include <config.h>
private inherit "roxenlib";
28: Inside #if defined(REQUEST_DEBUG)
#endif
#ifdef REQUEST_DEBUG
int footime, bartime;
- #define DPERROR(X) bartime = gethrtime()-footime; werror((X)+" (%d)\n", bartime);footime=gethrtime()
+ #define DPERROR(X) bartime = gethrtime()-footime; werror("%s (%d)\n", (X), bartime);footime=gethrtime()
#else
#define DPERROR(X)
#endif
723:
void disconnect()
{
file = 0;
- MARK_FD("my_fd in HTTP disconnected?");
+ #ifdef REQUEST_DEBUG
+ if (my_fd) MARK_FD("my_fd in HTTP disconnected?");
+ #endif
if(do_not_disconnect)return;
destruct();
}