1996-09-04 07:17:43 -07:00
|
|
|
/***********************************************************************/
|
|
|
|
/* */
|
|
|
|
/* Objective Caml */
|
|
|
|
/* */
|
|
|
|
/* Xavier Leroy and Pascal Cuoq, projet Cristal, INRIA Rocquencourt */
|
|
|
|
/* */
|
|
|
|
/* Copyright 1996 Institut National de Recherche en Informatique et */
|
|
|
|
/* Automatique. Distributed only by permission. */
|
|
|
|
/* */
|
|
|
|
/***********************************************************************/
|
|
|
|
|
|
|
|
/* $Id$ */
|
|
|
|
|
|
|
|
#include <mlvalues.h>
|
1996-09-05 06:32:25 -07:00
|
|
|
#include "unixsupport.h"
|
1996-09-04 07:17:43 -07:00
|
|
|
#include <winsock.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
|
|
|
static int sockopt[] = {
|
|
|
|
SO_DEBUG, SO_BROADCAST, SO_REUSEADDR, SO_KEEPALIVE,
|
|
|
|
SO_DONTROUTE, SO_OOBINLINE };
|
|
|
|
|
1997-03-11 02:38:06 -08:00
|
|
|
value unix_getsockopt(socket, option) /* ML */
|
1996-09-04 07:17:43 -07:00
|
|
|
value socket, option;
|
|
|
|
{
|
|
|
|
int optval, optsize;
|
|
|
|
optsize = sizeof(optval);
|
1997-09-03 07:38:02 -07:00
|
|
|
if (getsockopt((SOCKET) Handle_val(socket), SOL_SOCKET,
|
1997-09-04 06:45:56 -07:00
|
|
|
sockopt[Int_val(option)], (char *) &optval, &optsize) == -1)
|
|
|
|
unix_error(WSAGetLastError(), "getsockopt", Nothing);
|
1996-09-04 07:17:43 -07:00
|
|
|
return Val_int(optval);
|
|
|
|
}
|
|
|
|
|
1997-03-11 02:38:06 -08:00
|
|
|
value unix_setsockopt(socket, option, status) /* ML */
|
1996-09-04 07:17:43 -07:00
|
|
|
value socket, option, status;
|
|
|
|
{
|
|
|
|
int optval = Int_val(status);
|
1997-09-03 07:38:02 -07:00
|
|
|
if (setsockopt((SOCKET) Handle_val(socket), SOL_SOCKET,
|
1996-09-05 06:32:25 -07:00
|
|
|
sockopt[Int_val(option)],
|
1997-09-04 06:45:56 -07:00
|
|
|
(char *) &optval, sizeof(optval)) == -1)
|
|
|
|
unix_error(WSAGetLastError(), "setsockopt", Nothing);
|
1996-09-04 07:17:43 -07:00
|
|
|
return Val_unit;
|
|
|
|
}
|