apache.conf.in: include input byte count if available
commit28bc98b82ff67b095ad6ab00ef9a96bba111a957
authorKyle J. McKay <mackyle@gmail.com>
Sun, 25 Sep 2016 15:05:05 +0000 (25 08:05 -0700)
committerKyle J. McKay <mackyle@gmail.com>
Sun, 25 Sep 2016 15:05:05 +0000 (25 08:05 -0700)
tree7ed20664ac43e3c051031a8a096a6710ce9a5400
parent288b5ce8e882fe602953a5460a97e50b760fd4b8
apache.conf.in: include input byte count if available

If mod_logio is not available all we can display is the output byte
count in the log.

But if mod_logio is available we can also display the input byte count
and both will include all bytes.

To avoid changing the number of fields we combine them with '->' so that
if say the request was 155 bytes and the response was 213 bytes the log
entry would have '155->213' for the size field when mod_logio is enabled
and just 213 (less the headers size) when it's not.

Signed-off-by: Kyle J. McKay <mackyle@gmail.com>
apache.conf.in