]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
documentation polish
authorAmos Jeffries <squid3@treenet.co.nz>
Sat, 18 Sep 2010 01:56:37 +0000 (13:56 +1200)
committerAmos Jeffries <squid3@treenet.co.nz>
Sat, 18 Sep 2010 01:56:37 +0000 (13:56 +1200)
src/comm/ConnAcceptor.cc

index bc27fd96a7dac76f486cd38de30296020b45160d..afabcdc102a43e807f4e779774369386d255064b 100644 (file)
@@ -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);
 }