1998-03-29
1998-03-29 00:44:09 by David Hedbor <david@hedbor.org>
-
42ba93d0ab6a46b36094609e3bf0f2c56df5776c
(17 lines)
(+12/-5)
[
Show
| Annotate
]
Branch: 5.2
mode debug
Rev: server/protocols/http.pike:1.86
1:
// This is a roxen module. Copyright © 1996 - 1998, Idonex AB.
- constant cvs_version = "$Id: http.pike,v 1.85 1998/03/29 00:34:02 neotron Exp $";
+ constant cvs_version = "$Id: http.pike,v 1.86 1998/03/29 00:44:09 neotron Exp $";
// HTTP protocol module.
#include <config.h>
private inherit "roxenlib";
816: Inside #if defined(FD_DEBUG)
#ifdef FD_DEBUG
void timer(int start)
{
- MARK_FD(sprintf("HTTP piping %db, %ds (%s)",
- pipe ? pipe->sent : -4711,
+ if(pipe)
+ MARK_FD(sprintf("HTTP_piping_%d_%d_%d_%d_(%s)",
+ pipe->sent : -4711,
+ pipe->current_input_len,
+ stringp(pipe->current_input)?
+ strlen(pipe->current_input) : -4711,
_time(1) - start,
not_query));
-
+ else
+ MARK_FD("HTTP piping, but no pipe for "+not_query);
call_out(timer, 30, start);
}
#endif