diff options
author | Miles Bader <miles@gnu.org> | 1995-07-02 00:12:31 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 1995-07-02 00:12:31 +0000 |
commit | 9535e9ae6099f334632d38ded1d0aca3a303fa33 (patch) | |
tree | a71b85d107eb771438cebfb70e6a7bf4f6595283 /pflocal | |
parent | 1cfe679b50e77b061b6561d2025488a748f616bb (diff) |
Initial revision
Diffstat (limited to 'pflocal')
-rw-r--r-- | pflocal/connq.c | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/pflocal/connq.c b/pflocal/connq.c new file mode 100644 index 00000000..27df6d22 --- /dev/null +++ b/pflocal/connq.c @@ -0,0 +1,42 @@ +/* Listen queue functions + + Copyright (C) 1995 Free Software Foundation, Inc. + + Written by Miles Bader <miles@gnu.ai.mit.edu> + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation; either version 2, or (at + your option) any later version. + + This program is distributed in the hope that it will be useful, but + WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ + +#include <socket.h> + +#include "pflocal.h" + +error_t +listenq_create (struct listenq **lq) +{ + struct listenq *new = malloc (sizeof (struct listenq)); + + if (!new) + return ENOMEM; + + new->length = 0; + new->head = new->tail = 0; + new->queue = NULL; + + mutex_init (&new->lock); + condition_init (&new->listeners); + + *lq = new; + return 0; +} |