aboutsummaryrefslogtreecommitdiff
path: root/sys/sys/socketvar.h
diff options
context:
space:
mode:
authorJonathan Lemon <jlemon@FreeBSD.org>2001-06-28 04:39:49 +0000
committerJonathan Lemon <jlemon@FreeBSD.org>2001-06-28 04:39:49 +0000
commit83a1e7292275eda6c609b2837c694fa7c249865a (patch)
treed06aba74c3dad90757676fa5cd56dc809895d2f5 /sys/sys/socketvar.h
parent49d2d9f4a4a70176653a3f106b1a627ead2b9770 (diff)
downloadsrc-83a1e7292275eda6c609b2837c694fa7c249865a.tar.gz
src-83a1e7292275eda6c609b2837c694fa7c249865a.zip
Correct comment: so_q -> so_comp, so_q0 -> so_incomp.
Submitted by: Adagio Vangogh <adagio_v@pacbell.net>
Notes
Notes: svn path=/head/; revision=78913
Diffstat (limited to 'sys/sys/socketvar.h')
-rw-r--r--sys/sys/socketvar.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/sys/socketvar.h b/sys/sys/socketvar.h
index 215286e5df93..43b409e9fe17 100644
--- a/sys/sys/socketvar.h
+++ b/sys/sys/socketvar.h
@@ -62,10 +62,10 @@ struct socket {
* Variables for connection queuing.
* Socket where accepts occur is so_head in all subsidiary sockets.
* If so_head is 0, socket is not related to an accept.
- * For head socket so_q0 queues partially completed connections,
- * while so_q is a queue of connections ready to be accepted.
+ * For head socket so_incomp queues partially completed connections,
+ * while so_comp is a queue of connections ready to be accepted.
* If a connection is aborted and it has so_head set, then
- * it has to be pulled out of either so_q0 or so_q.
+ * it has to be pulled out of either so_incomp or so_comp.
* We allow connections to queue up based on current queue lengths
* and limit on number of queued connections for this socket.
*/