1996-09-04 07:17:43 -07:00
|
|
|
/***********************************************************************/
|
|
|
|
/* */
|
|
|
|
/* Objective Caml */
|
|
|
|
/* */
|
|
|
|
/* Xavier Leroy, projet Cristal, INRIA Rocquencourt */
|
|
|
|
/* */
|
|
|
|
/* Copyright 1996 Institut National de Recherche en Informatique et */
|
|
|
|
/* Automatique. Distributed only by permission. */
|
|
|
|
/* */
|
|
|
|
/***********************************************************************/
|
|
|
|
|
|
|
|
/* $Id$ */
|
|
|
|
|
|
|
|
#include <mlvalues.h>
|
|
|
|
#include <alloc.h>
|
|
|
|
#include <memory.h>
|
|
|
|
#include "unixsupport.h"
|
|
|
|
#include "socketaddr.h"
|
|
|
|
|
|
|
|
value unix_accept(sock) /* ML */
|
|
|
|
value sock;
|
|
|
|
{
|
1997-09-03 07:38:02 -07:00
|
|
|
SOCKET sconn = (SOCKET) Handle_val(sock);
|
|
|
|
SOCKET snew;
|
|
|
|
value fd = Val_unit, adr = Val_unit, res;
|
1996-09-04 07:17:43 -07:00
|
|
|
int optionValue;
|
|
|
|
|
|
|
|
/* Set sockets to synchronous mode */
|
|
|
|
optionValue = SO_SYNCHRONOUS_NONALERT;
|
|
|
|
setsockopt(INVALID_SOCKET, SOL_SOCKET, SO_OPENTYPE,
|
|
|
|
(char *)&optionValue, sizeof(optionValue));
|
1997-05-26 10:16:31 -07:00
|
|
|
|
1997-09-03 07:38:02 -07:00
|
|
|
sock_addr_len = sizeof(sock_addr);
|
|
|
|
enter_blocking_section();
|
|
|
|
snew = accept(sconn, &sock_addr.s_gen, &sock_addr_len);
|
|
|
|
leave_blocking_section();
|
|
|
|
if (snew == INVALID_SOCKET) {
|
|
|
|
_dosmaperr(WSAGetLastError());
|
|
|
|
uerror("accept", Nothing);
|
|
|
|
}
|
|
|
|
Begin_roots2 (fd, adr)
|
|
|
|
fd = win_alloc_handle((HANDLE) snew);
|
1997-05-26 10:16:31 -07:00
|
|
|
adr = alloc_sockaddr();
|
|
|
|
res = alloc_tuple(2);
|
1997-09-03 07:38:02 -07:00
|
|
|
Field(res, 0) = fd;
|
1997-05-26 10:16:31 -07:00
|
|
|
Field(res, 1) = adr;
|
|
|
|
End_roots();
|
1996-09-04 07:17:43 -07:00
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|