summaryrefslogtreecommitdiffstats
path: root/otherlibs/win32unix/accept.c
diff options
context:
space:
mode:
authorXavier Leroy <xavier.leroy@inria.fr>2002-04-30 15:00:48 +0000
committerXavier Leroy <xavier.leroy@inria.fr>2002-04-30 15:00:48 +0000
commitc98047f62764eab650f7495e50d0e1d63d53ac88 (patch)
tree3f26e1884beacb4fe6042fe60ca2bd7e093c5f79 /otherlibs/win32unix/accept.c
parent044ac150e8b5763047b77757e9144a920fb49a42 (diff)
Meilleure distinction handle/socket. Ajout lockf. Revu rename.
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@4765 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'otherlibs/win32unix/accept.c')
-rw-r--r--otherlibs/win32unix/accept.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/otherlibs/win32unix/accept.c b/otherlibs/win32unix/accept.c
index ee6cef312..a85be024e 100644
--- a/otherlibs/win32unix/accept.c
+++ b/otherlibs/win32unix/accept.c
@@ -22,7 +22,7 @@
CAMLprim value unix_accept(sock)
value sock;
{
- SOCKET sconn = (SOCKET) Handle_val(sock);
+ SOCKET sconn = Socket_val(sock);
SOCKET snew;
value fd = Val_unit, adr = Val_unit, res;
int oldvalue, oldvaluelen, newvalue, retcode;
@@ -52,7 +52,7 @@ CAMLprim value unix_accept(sock)
uerror("accept", Nothing);
}
Begin_roots2 (fd, adr)
- fd = win_alloc_handle((HANDLE) snew);
+ fd = win_alloc_socket(snew);
adr = alloc_sockaddr(&addr, addr_len);
res = alloc_small(2, 0);
Field(res, 0) = fd;