r4722@vps: verhaegs | 2007-05-06 13:11:19 -0400
[cake.git] / workbench / libs / bsdsocket / listen.c
blobef1ff0fea6122b4413b81f26920c4c38ee3636c2
1 /*
2 Copyright © 2000-2007, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc:
6 Lang: English
7 */
9 #include "bsdsocket_intern.h"
11 /*****************************************************************************
13 NAME */
15 AROS_LH2(int, listen,
17 /* SYNOPSIS */
18 AROS_LHA(int, s, D0),
19 AROS_LHA(int, backlog, D1),
21 /* LOCATION */
22 struct Library *, SocketBase, 7, BSDSocket)
24 /* FUNCTION
26 INPUTS
28 RESULT
30 NOTES
32 EXAMPLE
34 BUGS
36 SEE ALSO
38 INTERNALS
40 HISTORY
42 *****************************************************************************/
44 AROS_LIBFUNC_INIT
46 aros_print_not_implemented ("listen");
47 #warning TODO: Write BSDSocket/listen
49 return NULL;
51 AROS_LIBFUNC_EXIT
53 } /* listen */