blob: 1684ccb183b1bcce4a1c9ec1c1adcb53afc3e72b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#include <mlvalues.h>
#include "unix.h"
#ifdef HAS_SOCKETS
#include "socketaddr.h"
value unix_bind(socket, address) /* ML */
value socket, address;
{
int ret;
get_sockaddr(address);
ret = bind(Int_val(socket), &sock_addr.s_gen, sock_addr_len);
if (ret == -1) uerror("bind", Nothing);
return Val_unit;
}
#else
value unix_bind() { invalid_argument("bind not implemented"); }
#endif
|