1996-09-04 07:17:43 -07:00
|
|
|
/***********************************************************************/
|
|
|
|
/* */
|
|
|
|
/* Objective Caml */
|
|
|
|
/* */
|
|
|
|
/* Xavier Leroy and Pascal Cuoq, projet Cristal, INRIA Rocquencourt */
|
|
|
|
/* */
|
|
|
|
/* Copyright 1996 Institut National de Recherche en Informatique et */
|
1999-11-17 10:59:06 -08:00
|
|
|
/* en Automatique. All rights reserved. This file is distributed */
|
|
|
|
/* under the terms of the GNU Library General Public License. */
|
1996-09-04 07:17:43 -07:00
|
|
|
/* */
|
|
|
|
/***********************************************************************/
|
|
|
|
|
|
|
|
/* $Id$ */
|
|
|
|
|
|
|
|
#include <mlvalues.h>
|
|
|
|
#include "unixsupport.h"
|
|
|
|
#include <winsock.h>
|
|
|
|
|
1997-03-11 02:38:06 -08:00
|
|
|
value unix_listen(sock, backlog) /* ML */
|
1996-09-04 07:17:43 -07:00
|
|
|
value sock, backlog;
|
|
|
|
{
|
1997-09-04 06:45:56 -07:00
|
|
|
if (listen((SOCKET) Handle_val(sock), Int_val(backlog)) == -1)
|
|
|
|
unix_error(WSAGetLastError(), "listen", Nothing);
|
1996-09-04 07:17:43 -07:00
|
|
|
return Val_unit;
|
|
|
|
}
|