2016-02-18 07:11:59 -08:00
|
|
|
/**************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* OCaml */
|
|
|
|
/* */
|
|
|
|
/* Xavier Leroy, projet Cristal, INRIA Rocquencourt */
|
|
|
|
/* */
|
|
|
|
/* Copyright 1996 Institut National de Recherche en Informatique et */
|
|
|
|
/* en Automatique. */
|
|
|
|
/* */
|
|
|
|
/* All rights reserved. This file is distributed under the terms of */
|
|
|
|
/* the GNU Lesser General Public License version 2.1, with the */
|
|
|
|
/* special exception on linking described in the file LICENSE. */
|
|
|
|
/* */
|
|
|
|
/**************************************************************************/
|
1996-09-04 07:17:43 -07:00
|
|
|
|
2014-12-27 06:41:49 -08:00
|
|
|
#include <caml/mlvalues.h>
|
1996-09-04 07:17:43 -07:00
|
|
|
#include "unixsupport.h"
|
|
|
|
#include "socketaddr.h"
|
2010-01-22 04:48:24 -08:00
|
|
|
|
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;
|
|
|
|
}
|