summaryrefslogtreecommitdiffstats
path: root/otherlibs/unix/sockopt.c
diff options
context:
space:
mode:
authorXavier Leroy <xavier.leroy@inria.fr>1996-04-12 15:57:28 +0000
committerXavier Leroy <xavier.leroy@inria.fr>1996-04-12 15:57:28 +0000
commitee1266885025393876a3c42857881cd75b50f562 (patch)
tree4b8313e781c5d3be15af0c868dd01c7f7f1132ac /otherlibs/unix/sockopt.c
parenta9aac029f688b5f71f748697dbea937c526faaae (diff)
Ajout de setitimer, setsockopt, inet_addr_any.
Suppression de fcntl, ajout de fonctions pour manipuler le mode non bloquant et le bit close on exec. Nettoyage des codes d'erreur (plus proches de POSIX). Nettoyages divers. git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@742 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'otherlibs/unix/sockopt.c')
-rw-r--r--otherlibs/unix/sockopt.c52
1 files changed, 52 insertions, 0 deletions
diff --git a/otherlibs/unix/sockopt.c b/otherlibs/unix/sockopt.c
new file mode 100644
index 000000000..50dd84875
--- /dev/null
+++ b/otherlibs/unix/sockopt.c
@@ -0,0 +1,52 @@
+/***********************************************************************/
+/* */
+/* Caml Special Light */
+/* */
+/* Xavier Leroy, projet Cristal, INRIA Rocquencourt */
+/* */
+/* Copyright 1995 Institut National de Recherche en Informatique et */
+/* Automatique. Distributed only by permission. */
+/* */
+/***********************************************************************/
+
+/* $Id$ */
+
+#include <mlvalues.h>
+#include "unix.h"
+
+#ifdef HAS_SOCKETS
+
+#include <sys/types.h>
+#include <sys/socket.h>
+
+static int sockopt[] = {
+ SO_DEBUG, SO_BROADCAST, SO_REUSEADDR, SO_KEEPALIVE,
+ SO_DONTROUTE, SO_OOBINLINE };
+
+value unix_getsockopt(socket, option)
+ value socket, option;
+{
+ int optval, optsize;
+ optsize = sizeof(optval);
+ if (getsockopt(Int_val(socket), SOL_SOCKET, sockopt[Int_val(option)],
+ &optval, &optval) == -1)
+ uerror("getsockopt", Nothing);
+ return Val_int(optval);
+}
+
+value unix_setsockopt(socket, option, status)
+ value socket, option, status;
+{
+ int optval = Int_val(status);
+ if (setsockopt(Int_val(socket), SOL_SOCKET, sockopt[Int_val(option)],
+ &optval, sizeof(optval)) == -1)
+ uerror("setsockopt", Nothing);
+ return Val_unit;
+}
+
+#else
+
+value unix_getsockopt() { invalid_argument("getsockopt not implemented"); }
+value unix_setsockopt() { invalid_argument("setsockopt not implemented"); }
+
+#endif