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 */
|
1999-11-17 10:59:06 -08:00
|
|
|
/* en Automatique. All rights reserved. This file is distributed */
|
2001-12-07 05:41:02 -08:00
|
|
|
/* under the terms of the GNU Library General Public License, with */
|
|
|
|
/* the special exception on linking described in file ../../LICENSE. */
|
1996-09-04 07:17:43 -07:00
|
|
|
/* */
|
|
|
|
/***********************************************************************/
|
|
|
|
|
|
|
|
/* $Id$ */
|
|
|
|
|
|
|
|
#include <mlvalues.h>
|
|
|
|
#include "unixsupport.h"
|
|
|
|
#include "socketaddr.h"
|
|
|
|
|
2001-08-28 07:47:48 -07:00
|
|
|
CAMLprim value unix_bind(socket, address)
|
1996-09-04 07:17:43 -07:00
|
|
|
value socket, address;
|
|
|
|
{
|
|
|
|
int ret;
|
2000-03-16 05:35:20 -08:00
|
|
|
union sock_addr_union addr;
|
|
|
|
socklen_param_type addr_len;
|
|
|
|
|
|
|
|
get_sockaddr(address, &addr, &addr_len);
|
2002-04-30 08:00:48 -07:00
|
|
|
ret = bind(Socket_val(socket), &addr.s_gen, addr_len);
|
2001-12-03 02:33:39 -08:00
|
|
|
if (ret == -1) {
|
|
|
|
win32_maperr(WSAGetLastError());
|
|
|
|
uerror("bind", Nothing);
|
|
|
|
}
|
1996-09-04 07:17:43 -07:00
|
|
|
return Val_unit;
|
|
|
|
}
|