summaryrefslogtreecommitdiff
path: root/pflocal
diff options
context:
space:
mode:
Diffstat (limited to 'pflocal')
-rw-r--r--pflocal/sock.h5
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 */