From: Amos Jeffries Date: Sat, 18 Sep 2010 01:56:37 +0000 (+1200) Subject: documentation polish X-Git-Tag: take08~55^2~124^2~60 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6f8536c0a2076a6563382a248b3eb47863ab229e;p=thirdparty%2Fsquid.git documentation polish --- diff --git a/src/comm/ConnAcceptor.cc b/src/comm/ConnAcceptor.cc index bc27fd96a7..afabcdc102 100644 --- a/src/comm/ConnAcceptor.cc +++ b/src/comm/ConnAcceptor.cc @@ -89,7 +89,7 @@ Comm::ConnAcceptor::unsubscribe(const char *reason) void Comm::ConnAcceptor::start() { - debugs(5, 5, HERE << conn << " AsyncCall: " << theCallSub); + debugs(5, 5, HERE << conn << " AsyncCall Subscription: " << theCallSub); Must(IsConnOpen(conn)); @@ -103,7 +103,7 @@ Comm::ConnAcceptor::start() bool Comm::ConnAcceptor::doneAll() const { - // stio when FD is closed + // stop when FD is closed if (!IsConnOpen(conn)) { return AsyncJob::doneAll(); } @@ -230,13 +230,13 @@ Comm::ConnAcceptor::acceptOne() if (status == COMM_NOMESSAGE) { /* register interest again */ - debugs(5, 5, HERE << "try later: " << conn << " handler: " << theCallSub); + debugs(5, 5, HERE << "try later: " << conn << " handler Subscription: " << theCallSub); commSetSelect(conn->fd, COMM_SELECT_READ, doAccept, this, 0); return; } // A non-recoverable error; notify the caller */ - debugs(5, 5, HERE << "non-recoverable error: " << conn << " handler: " << theCallSub); + debugs(5, 5, HERE << "non-recoverable error: " << conn << " handler Subscription: " << theCallSub); notify(status, newConnDetails); mustStop("Listener socket closed"); return; @@ -244,7 +244,7 @@ Comm::ConnAcceptor::acceptOne() debugs(5, 5, HERE << "Listener: " << conn << " accepted new connection " << newConnDetails << - " handler: " << theCallSub); + " handler Subscription: " << theCallSub); notify(status, newConnDetails); }