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 "socketaddr.h"
|
|
|
|
|
|
|
|
value unix_connect(socket, address) /* ML */
|
|
|
|
value socket, address;
|
|
|
|
{
|
1997-09-03 07:38:02 -07:00
|
|
|
SOCKET s = (SOCKET) Handle_val(socket);
|
1997-05-19 08:42:21 -07:00
|
|
|
int retcode;
|
2000-03-16 05:35:20 -08:00
|
|
|
union sock_addr_union addr;
|
|
|
|
socklen_param_type addr_len;
|
1996-09-04 07:17:43 -07:00
|
|
|
|
2000-03-16 05:35:20 -08:00
|
|
|
get_sockaddr(address, &addr, &addr_len);
|
1996-09-04 07:17:43 -07:00
|
|
|
enter_blocking_section();
|
2000-03-16 05:35:20 -08:00
|
|
|
retcode = connect(s, &addr.s_gen, addr_len);
|
1996-09-04 07:17:43 -07:00
|
|
|
leave_blocking_section();
|
1997-09-04 06:45:56 -07:00
|
|
|
if (retcode == -1) unix_error(WSAGetLastError(), "connect", Nothing);
|
1996-09-04 07:17:43 -07:00
|
|
|
return Val_unit;
|
|
|
|
}
|