From 6a69aeb9c1a999bb9b511ba3f98e601f3693b3b8 Mon Sep 17 00:00:00 2001 From: Miles Bader Date: Sun, 30 Jul 1995 00:49:05 +0000 Subject: (struct sock): Add the CONNECT_QUEUE field, and rename the CONNQ field to LISTEN_QUEUE. --- pflocal/sock.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'pflocal/sock.h') 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 */ -- cgit v1.2.3