The user report excludes HTTP code 407 meaning that the proxy requires an
authentication.
It must be excluded too when summing up the downloaded size while reading
the input log. The previous code aborted with an error if
--enable-extraprotection was used and the log contained a 407 code.
Conflicts:
log.c
}
}
#ifdef ENABLE_DOUBLE_CHECK_DATA
- ufile->user->nbytes+=log_entry.DataSize;
- ufile->user->elap+=log_entry.ElapsedTime;
+ if (strcmp(log_entry.HttpCode,"TCP_DENIED/407")!=0) {
+ ufile->user->nbytes+=log_entry.DataSize;
+ ufile->user->elap+=log_entry.ElapsedTime;
+ }
#endif
if (ufile->file==NULL) {