diff options
author | Miles Bader <miles@gnu.org> | 1995-07-30 00:49:05 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 1995-07-30 00:49:05 +0000 |
commit | 6a69aeb9c1a999bb9b511ba3f98e601f3693b3b8 (patch) | |
tree | 1f541e8c6c83f3efac372e21805c15af2a5a248c | |
parent | 1d9224394499b7848ea289c9548cf0357076c7c4 (diff) |
(struct sock): Add the CONNECT_QUEUE field, and rename the CONNQ field to
LISTEN_QUEUE.
-rw-r--r-- | pflocal/sock.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/pflocal/sock.h b/pflocal/sock.h index b911582e..bef15d89 100644 --- a/pflocal/sock.h +++ b/pflocal/sock.h @@ -70,7 +70,10 @@ struct sock /* A connection queue to listen for incoming connections on. Once a socket has one of these, it always does, and can never again be used for anything but accepting incoming connections. */ - struct connq *connq; + struct connq *listen_queue; + /* A connection queue we're attempting to connect through; a socket may + only be attempting one connection at a time. */ + struct connq *connect_queue; }; /* Socket flags */ |