blob: 1f2550b05898ea46ea0b4e47dcca49e4868b5581 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
/***********************************************************************/
/* */
/* OCaml */
/* */
/* Xavier Leroy, projet Cristal, INRIA Rocquencourt */
/* */
/* Copyright 2002 Institut National de Recherche en Informatique et */
/* en Automatique. All rights reserved. This file is distributed */
/* under the terms of the GNU Library General Public License, with */
/* the special exception on linking described in file ../../LICENSE. */
/* */
/***********************************************************************/
/* $Id$ */
#include <mlvalues.h>
#include <signals.h>
#include "unixsupport.h"
CAMLprim value unix_set_nonblock(socket)
value socket;
{
u_long non_block = 1;
if (ioctlsocket(Socket_val(socket), FIONBIO, &non_block) != 0) {
win32_maperr(WSAGetLastError());
uerror("unix_set_nonblock", Nothing);
}
Flags_fd_val(socket) = Flags_fd_val(socket) & ~FLAGS_FD_IS_BLOCKING;
return Val_unit;
}
CAMLprim value unix_clear_nonblock(socket)
value socket;
{
u_long non_block = 0;
if (ioctlsocket(Socket_val(socket), FIONBIO, &non_block) != 0) {
win32_maperr(WSAGetLastError());
uerror("unix_clear_nonblock", Nothing);
}
Flags_fd_val(socket) = Flags_fd_val(socket) | FLAGS_FD_IS_BLOCKING;
return Val_unit;
}
|