On Thu, 2002-09-19 at 00:05, [EMAIL PROTECTED] wrote: > The easiest way, would be to put the filters in mod_log_config, and have > that module save the information in a connection_rec vector.
OK, I think I roughly understand what is the plan: - introduce c->bytes_in and c->bytes_out (c is conn_rec here) - put connection based filters from mod_logio into mod_log_config with one difference - count bytes in c->bytes_in and c->bytes_out - every time the request is being logged, reset c->bytes_in and c->bytes_out to zero I think I should be able to put together something like that. Thanks for the tip. Bojan