{
public:
- HttpDetails() : method(METHOD_NONE), code(0), content_type(NULL),
- timedout(false), aborted(false) {}
+ HttpDetails() : method(METHOD_NONE), code(0), content_type(NULL),
+ timedout(false), aborted(false) {}
HttpRequestMethod method;
int code;
debugs(5, 5, "commHandleWrite: write() returns " << len);
fd_bytes(fd, len, FD_WRITE);
statCounter.syscalls.sock.writes++;
- // After each successful partial write,
- // reset fde::writeStart to the current time.
+ // After each successful partial write,
+ // reset fde::writeStart to the current time.
fd_table[fd].writeStart = squid_curtime;
if (len == 0) {
if (writeTimedOut(fd)) {
// We have an active write callback and we are timed out
commio_finish_callback(fd, COMMIO_FD_WRITECB(fd), COMM_ERROR, ETIMEDOUT);
- }
- else if (AlreadyTimedOut(F))
+ } else if (AlreadyTimedOut(F))
continue;
debugs(5, 5, "checkTimeouts: FD " << fd << " Expired");
case LFT_SQUID_STATUS:
if (al->http.timedout || al->http.aborted) {
snprintf(tmp, sizeof(tmp), "%s%s", log_tags[al->cache.code],
- al->http.statusSfx());
+ al->http.statusSfx());
out = tmp;
} else {
out = log_tags[al->cache.code];